lunes, 15 de abril de 2013

Arreglos paralelos calcular promedio C#


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Arreglos_Pararelos
{
    class Program
    {
        static void Main(string[] args)
        {
            int i;
            float PROM = 0.0f;
            float AC = 0;

           //le puse la dimension de 5 para comprobar mas rapido el funcionamiento del programa.
       //el programa original es 30 calif y alumnos solo tendriamos que cambiar los numeros 5 por 30...

            Random objeto = new Random();
             float   numero = objeto.Next(5, 10);




            string[] nombre = new string[5];
            float[] calif = new float[5];

            for (i = 0; i < 5; i++)
            {
                for (i = 0; i < 5; i++)
                {
                    Console.WriteLine("Introduce el nombre: ");
                    nombre[i] = Convert.ToString(Console.ReadLine());

               
                   calif[i] = objeto.Next(5, 10);
                 

                    AC += calif[i];
                }
            }

            PROM = AC / 5;

            Console.WriteLine("El promedio dle grupo es: " + PROM);

            for (i = 0; i < 5; i++)
            {
                if (calif[i] < PROM)
                {
                    Console.WriteLine("El nombre de los alumnos con calificacion menor al promedio: "+nombre[i]);


                }



            }


            Console.ReadLine();
        }
    }
}
       
       

No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: