domingo, 8 de noviembre de 2009

Practica # 8.1(Promedio)

PSEUDOGODIGO
INT N;
[] INT VALORES;
PRINT (“Introduce numero de elementos");
READ N;
VALORES = NEW INT [N];
INT I;
INT sumapar=0;
INT sumaimpar=0;
FOR (I=0; I
PRINT (“Introduce valores enteros”);
READ VALORES[I];
IF ( VALORES [I]%2==0);
{
SUMAPAR +=VALORES[I];
}
ELSE
{
SUMIMPAR +=VALORES [I];
}}
PRINT (“Numeros pares:”);
FOR (I=0; I
{
IF (VALORES [I]%2==0)
{
PRINT VALORES [I];
}
}

PRINT ();
PRINT (“suma de los numeros pares”, sumapar)
PRINT (“NUMEROS IMPARES :”)
FOT ( I=0; I
{
IF (VALORES [I] %2==1)
{
PRINT (VALORES [I]);
}
}
PRINT ();
PRINT (“suma de numeros impares”, sumaimpar);
FIN
CODIGO EN CONSOLA
int[] temp = new int[8];
int suma = 0, I, P;
Console.WriteLine("Introduce los siguientes valores enteros:");
for (I = 0; I <>
{
Console.Write("Dato {0}:", I);
temp[I] = int.Parse(Console.ReadLine());
suma += temp[I];
}
P = suma / 8;
Console.WriteLine("\nLista de los 8 valores enteros:");

for (I = 0; I <>
{
Console.WriteLine("\t" + temp[I]);
}
Console.WriteLine("Promedio = {0}", P);
Console.ReadKey();
CODIGO EN WINDOWS



public partial class Form1 : Form
{
int[] temp;
int I, suma, P;
public Form1()
{
InitializeComponent();
temp = new int[8];
I = suma = P = 0;
listBox1.Items.Add("NUMEROS ENTEROS");
}

private void button1_Click(object sender, EventArgs e)
{
if (I < suma =" suma" enabled =" false;" enabled =" false;" p =" suma" promedio="">

No hay comentarios:

Publicar un comentario