20091109

PRACTICA 8.1.ARREGLO LLAMADO TEMP.(consola)

pseudocodigo.
inicio
int[] temp = new int[8]
int suma = 0, I, S
print"tINTRODUZCA 8 NUMEROS:"
for (I = 0 to I <8 step I++)
print("\n\t\t NUMERO:", I)
Read temp[I] suma += temp[I] S = suma / 8
print " LISTADO DE 8 VALORES :"
for (I = 0 to I <8 step I++)
{
print"t" + temp[I] } print" PROMEDIO = ", S
}fin.



Escriba un programa para introducir 8 números den un arreglo llamado temp. Al introducir cada numero, súmelo aun total. Después e introducir todos los números y el promedio.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] temp = new int[8];
int suma = 0, I, S;

Console.WriteLine("\n\t\tINTRODUZCA 8 NUMEROS:");
for (I = 0; I <8;i++) color="#cc66cc">{

Console.Write("\n\t\t NUMERO {0}:", I);
temp[I] = int.Parse(Console.ReadLine());
suma += temp[I];
}
S = suma / 8;
Console.WriteLine("\n\t LISTADO DE 8 VALORES :");
for (I = 0; I <8;i++) color="#cc66cc">{
Console.WriteLine("\t\t\t" + temp[I]);
} Console.WriteLine("\n\t\t PROMEDIO = {0}", S);
Console.ReadKey();
}
} }

No hay comentarios:

Publicar un comentario