Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Program: mayormenor.cc
- // Author: Yoan Pinzon
- // Date: Agosto 30, 2006
- #include <iostream>
- using namespace std;
- int main(){
- int x, menor, mayor;
- cout << "Entre un valor: "; cin >> x;
- menor=mayor=x;
- while(x!=-99){
- cout << "Entre otro valor: "; cin >> x;
- menor=(x<menor?x:menor); mayor=(x>mayor?x:mayor);
- }
- cout << "\nEl mayor fue " << mayor << "\nEl menor fue " << menor << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement