I've started to write the beginning of the game blackjack, this is just a menu, but I keep getting errors and I don't understand why? Could someone help, thanks.
UPDATE: So, I've fixed the errors but whenever I pick an option it always displays "Oops wrong letter, please try again" but I only want that if the user picks neither of the options above.
Some of your if's should be else if's. For example the 'N' case: if you chose this then its if block would run; then you would go to the next if statement and have to pass through the catch-all else block.
You haven't written definitions of some of the functions. Put some placeholders in if you don't want to write them just yet.
Your options must all be entered in upper case. Either use toupper() on Menuchoice, or give upper- and lower-case alternatives in your if statements.
Get rid of this dratted pch.h garbage; then it would run as-is in c++ shell.
But if I change the N statement to elseif it won't run
I didn't say that first one ... change the ones underneath!!!
pseudo-code
IF (N case) // this is the only "pure" IF
...
ELSE IF ( another case )
...
ELSE IF ( yet another case )
...
ELSE // if none of the above worked
...
END IF // phew!