the problem with this code is that you only input a single digit and then
in your switch statement you are trying to compare it with a two digit number case '10':
You will either need to input as a string or as an integer
if as a string you would need to use the strcmp function.
if as an integer you would just use case 1: case 10: etc
@Shredded: Thanks for the introduction to cin.break/clear/peek and ignore
It's really helping me out here and also will in the future ^^
@Duoas: There were indeed some interesting thought paterns in that thread, no doubt I'll use some of them aswell in the future :)
Thanks for linking me there.