Posts
 
Reputation
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
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for Savage221

[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 …

Member Avatar for firepiro05e91
0
1K

The End.