#include <iostream>
using namespace std;
main (){
int aux,maior,menor,cont=0;
do{
cout << "informe um numero, para sair digite -1: ";
cin >> aux;
if(aux != -1 && cont==0){
maior = aux;
menor = aux;
}
else if(aux != -1){
if(aux > maior)
maior = aux;
if(aux < menor)
menor = aux;
}
cont++;
}while( aux !=-1);
cout << "\nmaior numero digitado foi: " << maior << endl;
cout << "\nmenor numero digitado: " << menor << endl;
return 0;
}
Trabalhos.:
E-mail: mvf5system@gmail.com
Blog: http://mvf5-system.blogspot.com.br/
Facebook: https://www.facebook.com/mvf5systems
E-mail: mvf5system@gmail.com
Blog: http://mvf5-system.blogspot.com.br/
Facebook: https://www.facebook.com/mvf5systems
0 comentários:
Postar um comentário