El programa esta hecho con visual Studio 2015.
Programa que produzca numero aleatorio entre (200 y 400) cada vez que pulse el botón.el programa deberá mostrar ese numero junto con la suma y el promedio de todos los números recibidos hasta ese momento.a medida que usted pulse el botón repetidamente el promedio deberá llegar a 300.
Lo que tengo hasta el momento es lo siguiente:
Código
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Ejercicio_6._3 { public partial class Form1 : Form { private int Intentos = 0; private int Intentosx = 0; public Form1() { InitializeComponent(); lbl2.Text = Convert.ToString(Aleatorio.Next(200, 400)); } private void button1_Click(object sender, EventArgs e) { int Intentos1; int Intentos2; int n ; int n2; int sumat; Intentos = 0; Intentosx = 0; lbl2.Text = Convert.ToString(Aleatorio.Next(200, 400)); Intentos1 = Convert.ToInt32(lbl2.Text); n = Intentos1; Intentos2 = Convert.ToInt32(lbl2.Text); Intentos2 = n; n2 = 0; n2 = Intentos2; sumat = n + n2; lbl4.Text = Convert.ToString(sumat); } } }
Muchas gracias
Mod: Los códigos deben ir en etiquetas GeSHi y de nuevo... c# no es vb