Please enable JavaScript.
Coggle requires JavaScript to display documents.
Manual Aplicativo Iterativo - Coggle Diagram
Manual Aplicativo Iterativo
string nombre;
int nota1, nota2, nota3, nota4, nota5, prome;
nombre = txtnombre.Text;
nota1 = int.Parse(txtnota1.Text);
nota2 = int.Parse(txtnota2.Text);
nota3 = int.Parse(txtnota3.Text);
nota4 = int.Parse(txtnota4.Text);
nota5 = int.Parse(txtnota5.Text);
prome = int.Parse(txtpromedio.Text);
dataGridView1.Rows.Add(nombre, nota1, nota2, nota3, nota4, nota5, prome);
double total = 0;
var total2 = dataGridView1.Rows.Cast<DataGridViewRow>().Sum(x => Convert.ToDouble(x.Cells["txt7"].Value));
int total3 = dataGridView1.Rows.Cast<DataGridViewRow>().Count();
total = total2 / total3;
txtpromtotal.Text = Convert.ToString(total);
int prome, n1, n2, n3, n4, n5;
n1 = int.Parse(txtnota1.Text);
n2 = int.Parse(txtnota2.Text);
n3 = int.Parse(txtnota3.Text);
n4 = int.Parse(txtnota4.Text);
n5 = int.Parse(txtnota5.Text);
prome = (n1 + n2 + n3 + n4 + n5) / 5;
txtpromedio.Text = Convert.ToString(prome);
if (prome >= 3.0)
MessageBox.Show("aprobado");
else
MessageBox.Show("reaprobado");