Hola como mayor de 5 numeros

Cerrado
Riuk - 12 oct 2010 a las 19:29
 Adrchilly - 14 oct 2010 a las 00:02
Hola,



Hola como hago para sacar el mayor de 5 numeros si alguien sabe porfa ayudenme xD.
soy principiante tabia
Consulta también:

1 respuesta

Hola! Hay muchas formas las mas faciles que se me ocurren son estas:
1)

#include <iostream>

using namespace std;

int main()

{
double n=0;
int cont=0;
double mayor=1;
while (cont<5){
cout<<"Ingrese el "<<cont+1<<"o numero"<<endl;
cin>>n;
if (n>mayor){
mayor=n;}
cont++;}
cout<<"El numero mayor es: "<<mayor<<endl;
system("pause");
return 0;
}



//O ESTA OTRA SOLUCION CON UN "FOR" POR SI YA LO CONOCES Y QUEDA MAS CORTO

#include <iostream>

using namespace std;

int main()

{
double n=0;
double mayor=1;
for(int i=0;i<5;i++){
cout<<"Ingrese el "<<i+1<<"o numero"<<endl;
cin>>n;
if (n>mayor){
mayor=n;} }
cout<<"El numero mayor es: "<<mayor<<endl;
system("pause");
return 0;
}



eSPERO HABER aYUDADO :)... AdrianJiménezSolís CostaRica
3