Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <ctime>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int los, liczba=0, licznik=1, napis=1;
- srand(time(NULL));
- los=rand()%100;
- cout<<"Wymyslilem liczbe dla Ciebie :) w zakresie do 100"<<endl;
- cout<<"Zgadnij liczbe w maksymalnie 6 probach: "<<endl;
- do
- {
- cout<<"Proba nr: "<<licznik<<endl;
- if (licznik>6)
- {
- cout<<"ZA DUZO PROB"<<endl;
- cout<<"Zgadywana liczba to: "<<los<<endl;
- napis=0;
- break;
- }
- cin>>liczba;
- if (los==liczba) break;
- if (los<liczba) cout<<"Proponujesz za duza liczbe"<<endl;
- if (los>liczba) cout<<"Proponujesz za mala liczbe"<<endl;
- licznik++;
- }
- while (los!=liczba);
- if (napis==1)cout<<"Brawo!!! Zgadles liczbe!!! :) w "<<licznik<<" probach!"<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement