+ 2
Hello,
I looked at your code and only problem is with your case statements. For example where you put:
case 0, 24, 1:
try writing them as separate case statements (which I know will take a lot of code, but it will work when you do), so like:
case 0:
Console.Write("Midnight");
break;
case 24:
Console.Write("Midnight");
break;
case 1:
Console.Write("Midnight");
break;
Do that for all of your case statements, and hopefully your program will work!
0
No problem!