Odpowiedź:
#include <iostream>
#include <ctime>
#include <cstdlib>
int main() {
srand(time(nullptr));
int n, a;
std::cout << "Podaj liczbe rzutow \n";
std::cin >> n;
int headCounter = 0;
int tailCounter = 0;
for (int i = 0; i < n; i++) {
a = rand() % 2;
if (a == 0) {
headCounter++;
} else {
tailCounter++;
}
}
std::cout << "Orzel wystapil " << tailCounter << " razy, a reszka " << headCounter << " razy";
return 0;
}
Wyjaśnienie: