Consulta también:
- Hola como mayor de 5 numeros
- Trucos gta 5 ps3 coches de lujo - Guide
- Código postal de chile 5 dígitos - Guide
- Bluestacks 5 - Programas - Emuladores de Android
- Gta 5 gratis para pc - Programas - Acción y aventuras
- Descargar forza horizon 5 pc gratis - Programas - Carreras
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
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