Advertisement
udsigry

gra_zgadywanka_C++

Feb 16th, 2012
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. /*wszystkie projecty na http://pastebin.com/u/udsigry
  2. cos za cos :P
  3. */
  4. #include <ctime>
  5. #include <iostream>
  6.  
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11.     int losowa;
  12.     int liczba;
  13.     srand(time(0));
  14.     losowa=rand()%100+1;
  15.     do
  16.     {
  17.         cout<<"Podaj jakoms liczbe z zakresu od 0 do 100: ";
  18.         cin>>liczba;
  19.         if(losowa == liczba)
  20.         {
  21.             cout<<"\n zgadles!!!! odpowiednia liczba to: "<<liczba<<" \n";
  22.             system("pause");
  23.             break;
  24.         }
  25.         else
  26.         {
  27.             if (losowa > liczba)
  28.             {
  29.                 cout<<"\n liczba jest za mala. \n \n";
  30.             }
  31.             else
  32.             {
  33.                 cout<<"\n liczba jest za duza. \n \n";
  34.             }
  35.         }
  36.     } while (losowa != liczba);
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement