Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*wszystkie projecty na http://pastebin.com/u/udsigry
- cos za cos :P
- */
- #include <ctime>
- #include <iostream>
- using namespace std;
- int main()
- {
- int losowa;
- int liczba;
- srand(time(0));
- losowa=rand()%100+1;
- do
- {
- cout<<"Podaj jakoms liczbe z zakresu od 0 do 100: ";
- cin>>liczba;
- if(losowa == liczba)
- {
- cout<<"\n zgadles!!!! odpowiednia liczba to: "<<liczba<<" \n";
- system("pause");
- break;
- }
- else
- {
- if (losowa > liczba)
- {
- cout<<"\n liczba jest za mala. \n \n";
- }
- else
- {
- cout<<"\n liczba jest za duza. \n \n";
- }
- }
- } while (losowa != liczba);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement