Programacion java
Enviado por iza201 • 1 de Septiembre de 2013 • 528 Palabras (3 Páginas) • 432 Visitas
#include <iostream>
> using namespace std;
>
> int N;
> float suma;
> int T = 0;
> float promedio;
>
>
>
> int LeerNotas();
> int Media();
>
>
>
> int main()
> {
> LeerNotas();
>
> }
>
> int LeerNotas()
> {
> cout<<"Introdusca la cantidad de alumnos"<<endl;
> cin >> N;
> float Notas[N];
> int s = 0;
> int b = 0;
> /*
> for(int i = 0; i < N; i++)
> {
> cout<<"introdusca la nota del alumno "<<i+1<<":"<<endl;
> cin >>Notas[i];
> suma += Notas[i];
> T++;
>
> }
> */
>
> // /*
> do
> {
> cout<<"Introdusca la nota del alumno "<<T+1<<":"<<endl;
> cin >>Notas[T];
> suma += Notas[T];
> T++;
> }
> while(T < N);
> // */
> promedio = suma/T;
>
> /*
> for(int i = 0; i < N; i++)
> {
> if(Notas[i] > promedio)
> {
> s++;
> }
> else b++;
> }
> */
>
> // /*
> int i = 0;
> do
> {
>
> if(Notas[i] > promedio)
> {
> s++;
> i++;
> }
> else {
> b++;
> i++;
> }
> }
> while(i < N);
>
> // */
>
> cout<<"EL promedio de "<<N<<" alumnos es:"<<promedio<<endl;
> cout<<"EL numero de alumnos sobre la norma es:"<<s<<endl;
> cout<<"EL numero en o bajo la norma es:"<<b<<endl;
> system("PAUSE");
>
> }
>
...