Im writing the basic RPS program but I have to add in a twist. After writing the code it builds but the computer will not chose, Im not sure what I'm missing.
What do you mean by "the computer will not choose"? Does it turn itself off? Does it close all your programs? Does it take the both the red and blue pills? You need to be more specific.
You're calling a function void Intro(); but I don't see that defined in what you've posted so far?
You have returns for PlayerChoice or CompChoice in the condition that either the player or computer chooses the fifth option. Were these if/else statements supposed to be in a separate function from the main function?
CompChoice = '1'
Since this is defined as an integer variable, I would put CompChoice=1. (not '1' as in a character)
void Intro(); shouldn't be in main. Move it before main and then call it with Intro(). I'm also new to coding, and I've found that the 'or' statement (||) can be unreliable (at least when I've used it). If all else fails, maybe change all the or statements into separate else if statements?