#include #include #include #include using namespace std; // function prototype int flipCoin(); int main() { int heads, tails; int flip; // the random number generator int num = time(0); srand(num); // do 5 sets with 10 outcomes of heads or tails for (int run=1; run<=5; run++) { cout<