Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cstdlib>
- #include <ctime>
- using namespace std;
- int main()
- {
- int i;
- int x;
- srand(time(NULL));
- x = rand() % (1 + 1);
- if (x == 0)
- {
- cout << "Orzel" << endl;
- }
- else
- cout << "Reszka" << endl;
- /* Wyniki są losowe */
- }
Add Comment
Please, Sign In to add comment