Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cstdlib>
- #include <ctime>
- int a=9;
- using namespace std;
- int main()
- {
- while(1==1){
- srand(time(NULL));
- cout << "Losowość: " << endl;
- cout<< rand()%(a+1)<<endl;
- cout<< rand()%(a+1)<<endl;
- cout<< rand()%(a+1)<<endl;
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment