ANGEL CABELLO

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

ANGEL CABELLO

using System;

using System.Collections.Generic;

using System.Collections.Specialized;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

namespace evaluacion

public partial class Form1 : Form

int i = 0;

Random random = new Random();

public Form1()

InitializeComponent();

private void button1_Click(object sender, EventArgs e)

int R = random.Next(2, 100);

for (int i = 0; i < 20; i++)


{

if (i == 0 && i < 101)

//txtgenerar.Text = i.ToString();

txtgenerar.Text += R.ToString();

private void button2_Click(object sender, EventArgs e)

You might also like