I can help you with some compiler errors within if else if statement and the switch (type) statement.
For the else if statement,
else if (day >=2 || <=3) [ERROR]
you need to completely type it out. So,
else if (day >= 2 || day <=3)
That would get rid of your compiler error on both lines 42 and 44.
switch (type)
case 1: // You have to use case 1. I removed the double quotes around the 1 because with the quotes, you are making it a string, and not an int.
This would apply to lines, 52, 55, 58, 61, 64.
What do you mean on line seventeen with type choice?