I can't seem to make this work. For some reason the PlayerChoice is getting randomized so that the users input doesn't matter as the program will just randomly assign a value to PlayerChoice. As far as I can tell the CompChoice should be randomized, I can't see why the PlayerChoice is being randomized, someone help please?
@Vyperhate
Also, your rand number generator int CompChoice = rand() % 2;, returns a 0 or a 1, never a two. You'll have to change the two to a three, to get all three numbers
Ok thanks for your help. Now it doesn't seem to rand the PlayerChoice however the only player input that works now is "0"... Any other input just ends the program (does not activate the default in the switch) Ideas?