Advertisement
idsystems

CPP_Practica64_Adivinar

Mar 14th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.05 KB | None | 0 0
  1. // Program: adivinar.cc
  2. // Author:  Yoan Pinzon
  3. // Date:    Agosto 30, 2006
  4.  
  5. #include <iostream>
  6. #include <string>
  7.  
  8. using namespace std;
  9.  
  10. int main(){
  11.    const string numletras[]={"primer", "segundo", "tercer", "cuarto", "quinto",
  12.                              "sexto", "septimo", "octavo", "noveno", "decimo"};
  13.    const int n=81;
  14.    int x, c=0;
  15.  
  16.    cout << "Adivinando un numero n entre 1 y 100" << endl;
  17.    cout << "====================================" << endl;
  18.    do{
  19.       cout << "Entre x: "; cin >> x; c++;
  20.       if( x == -1 ){
  21.          cout << "Muy malo! usted aborto el programa despues del ";
  22.          if(c<=10) cout << numletras[c-2] << " intento" << endl;
  23.          else cout << c-1 << " intento" << endl;
  24.          return 0;
  25.       }
  26.       if( x > n ) cout << x << ">n" << endl;
  27.       else if( x < n ) cout << x << "<n" << endl;
  28.    } while(x != n);
  29.    cout << x << "=n felicitaciones!, usted adivino el numero en el ";
  30.    if(c<=10) cout << numletras[--c] << " intento" << endl;
  31.    else cout << c << " intento" << endl;
  32.  
  33.    return 0;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement