Advertisement
idsystems

CPP_Practica56_MayorMenor

Mar 13th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. // Program: mayormenor.cc
  2. // Author:  Yoan Pinzon
  3. // Date:    Agosto 30, 2006
  4.  
  5. #include <iostream>
  6.  
  7. using namespace std;
  8.  
  9. int main(){
  10.    int x, menor, mayor;
  11.  
  12.    cout << "Entre un valor: "; cin >> x;
  13.    menor=mayor=x;
  14.    while(x!=-99){
  15.       cout << "Entre otro valor: "; cin >> x;
  16.       menor=(x<menor?x:menor); mayor=(x>mayor?x:mayor);
  17.    }
  18.    cout << "\nEl mayor fue " << mayor << "\nEl menor fue " << menor << endl;
  19.  
  20.    return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement