Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <cstdlib>
  4. #include <ctime>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. srand(time(NULL));
  11.  
  12. cout <<"1. feladat"<< endl;
  13. int a=rand()%2+1;
  14. if (a==1) cout<<"F"<<endl;
  15. else cout<<"I"<<endl;
  16. cout<<"2. Feladat"<<endl;
  17. char tipp;
  18. cout<<"Tippeljen !"<<endl;
  19. cin>>tipp;
  20. a=rand()%2+1;
  21. if (a==1 & tipp=='F') cout<<"Eltalalta"<<endl;
  22. else if (a==2 & tipp=='I') cout<<"Eltalalta"<<endl;
  23. else cout<<"Nem talalta el"<<endl;
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement