Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
[code]#include <iostream> #include <cstdlib> #include <iomanip> #include <ctime> using namespace std; int heads = 0, tails = 0, cointoss; int flip(); int main() { srand(time(0)); for (int counter = 1; counter <= 10; counter++) { for (int count = 1; count <= 10; count++) flip(); cout << endl; } cout …
The End.
firepiro05e91