20091103

PRACTICA 9.1 CALIFICACIONES Y PROMEDIOS (visual)





A continuacion el ejecutble en visual.


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
int[] calificaciones;
int[] desviacion;
int I, suma, variancia, promedio;
public Form1()
{
InitializeComponent();
calificaciones = new int[] { 89, 95, 72, 83, 99, 54, 86, 75, 92, 73, 79, 75, 82, 73 };
desviacion = new int[14];
suma = I = variancia = promedio = 0;
}
private void button1_Click(object sender, EventArgs e)
{
listBox1.Items.Add("CALIFICACION DESVIACION");
for (I = 0; I < 14; I++)
{
suma = suma + calificaciones[I];
}
promedio = suma / 14;
for (I = 0; I < 14; I++)
{
desviacion[I] = calificaciones[I] - promedio;
listBox1.Items.Add(calificaciones[I] + "\t" + desviacion[I]);
}
suma = 0;
for (I = 0; I < 14; I++)
{
suma = suma + (desviacion[I] *desviacion[I]);
}
variancia = suma / 14;
listBox1.Items.Add(" LA VARIANCIA "+variancia);


}
private void button2_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
}
private void button3_Click(object sender, EventArgs e)
{
Close();
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}

No hay comentarios:

Publicar un comentario