954,535 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Coin Toss Simulation, getting all Tails and one Heads

Hey, it looks like I'm stuck yet again. I've been working on this for awhile and I can't figure out why it's not working properly. Here's what I'm supposed to do:
Create a function that simulates coin tossing. The function should have no input and no return value. When the function is called, it first asks the number of times they want to flip the coin, say 20, then the function will call random number function rand() 20 times. Each time rand() will randomly generate two numbers between 0 and 1 and they represent the heads and tails respectively. If it's heads print H if it's tails print T.

#include<iostream>
#include<string>
using namespace std;
void displayMenu(void);
void coinToss(int flips);
 
int main()
{
    int choice;
    int flips;
 
    string dummy;
    do{
         cout<<"What would you like to do?\n";
         displayMenu();
         cin >> choice;
         switch(choice)
        {
        case 1:
               cout <<"How many times would you like to flip the coin?"<< endl;
               cin >> flips;
               coinToss( flips );
               getline( cin, dummy );
               getline( cin, dummy );
               break;
         }
}
        while( choice == 3 );
        cout <<"The program has terminated. Good Bye"<< endl;
        return 0; 
}
 
void displayMenu( void )
 
{
cout << "==========================\n";
cout << "1. Flip a coin\n";
cout << "2. Multiplication\n";
cout << "3. Quit\n";
cout << "==========================\n";
}
 
void coinToss( int flips )
 
{
 
   int counter = 0, head = 0, tail = 0, toss;
   while( flips != 0 )
 
{
   toss--;
   counter++;
   toss = rand() % 1;
 
   if( toss == 1 )
{
   head++;
   cout << "H" << endl;
}
 
   else
{
   tail++;
   cout << "T" << endl;
}
}
}


The problem that I'm having is that when I run the program it always gives me all Tails and one head. So if you have any ideas as to why it's doing that I'd appreciate the help. Thanks again for all the help.

Rickenbacker360
Newbie Poster
21 posts since Jan 2007
Reputation Points: 10
Solved Threads: 0
 

Consider initializing your random number generator at the beginning of your program:

#include <ctime>
srand(time(0));



Your logic is totally weird here:

toss--;
   counter++;
   toss = rand() % 1;


It's useless to deincrement toss when it gets assigned the random number 2 statements later. And rand() % 1 won't work, because the remainder of anything divided by 1 will be 0 (except for decimals, but you're assigning to an integer so any fractions are thrown away).

John A
Vampirical Lurker
Team Colleague
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
 

Also, your coinToss() function needs to be formatted properly. It'll only take you 30 seconds... ;)

WaltP
Posting Sage w/ dash of thyme
Moderator
10,506 posts since May 2006
Reputation Points: 3,348
Solved Threads: 944
 

So where is the function that has no input and no return value and upon calling it asks the user how many coin tosses and then simulates that number of coin tosses?

cscgal
The Queen of DaniWeb
Administrator
19,424 posts since Feb 2002
Reputation Points: 1,474
Solved Threads: 230
 

Hey, thank you for all the replies I really appreciate it. Sorry I kind of disappeared but I got a bit sick after I posted this. I ended up getting it to work, so thank you all for the help. One quick question..did you all struggle when you first started C++ programming? I'm a big time perfectionist and it's driving me crazy that I'm having so much difficulty. If you did struggle what did you do to improve? Thanks again for the responses.

Rickenbacker360
Newbie Poster
21 posts since Jan 2007
Reputation Points: 10
Solved Threads: 0
 

write more, more and more code till you faint in front of the computer ;)

tonakai
Junior Poster
121 posts since Feb 2005
Reputation Points: 25
Solved Threads: 11
 

Yeah, you've told it to Print H if 1, else print t. Therefore If the number is 1 (and only 1) it will be H. Randomly generated numbers are not whole numbers. You will get 0.45623. To fix it, it should be something like this:

if (rand()<0.5);
print "h",
else
print "t",
end

Somegamer
Newbie Poster
2 posts since May 2009
Reputation Points: 6
Solved Threads: 0
 

Not only do you resurrect an old thread, you don't even know what language you're dealing with. This is a C++ forum, not BASIC. Random numbers are integers.

WaltP
Posting Sage w/ dash of thyme
Moderator
10,506 posts since May 2006
Reputation Points: 3,348
Solved Threads: 944
 
Not only do you resurrect an old thread, you don't even know what language you're dealing with. This is a C++ forum, not BASIC. Random numbers are integers.

Im sorry, but I didn't do it. I was stupid enough to leave myself logged into a ssp school computer during lunch/recess.

I had a look at my (dry cough) response and i know who did it. Im new to this site, and i had no idea it was and old thread because i found it in google.

Somegamer
Newbie Poster
2 posts since May 2009
Reputation Points: 6
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You