+ 2
Tell me the mistake in it
2 odpowiedzi
+ 1
Write switch instead of Switch, the first letter must lowercase.
You also placed a semicolon that shouldn't be there.
In line 5, instead of:
Switch (day) ; {
Try:
switch (day) {
+ 2
code is fine ......no errors.