Challenge: Weekday Switch
Swipe to start coding
Write a program that takes an integer from 1 to 7 and prints the corresponding day of the week.
- Use a
switchstatement to compare the value ofdayto numbers 1-7. - For each case (1 to 7), print the corresponding day of the week.
- Add
breakafter each case to prevent fall-through. - Add a
defaultcase to handle invalid inputs (numbers outside 1-7). In this case, print"Invalid day".
Note
Please note that in our system, the counting of days in the week starts on Monday. So, the first day is Monday, the second is Tuesday, and so on.
Lösning
solution.java
Tack för dina kommentarer!
single
Fråga AI
Fråga AI
Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal
Can you explain this in simpler terms?
What are the main benefits or drawbacks?
Can you give me a real-world example?
Awesome!
Completion rate improved to 2.7
Challenge: Weekday Switch
Svep för att visa menyn
Swipe to start coding
Write a program that takes an integer from 1 to 7 and prints the corresponding day of the week.
- Use a
switchstatement to compare the value ofdayto numbers 1-7. - For each case (1 to 7), print the corresponding day of the week.
- Add
breakafter each case to prevent fall-through. - Add a
defaultcase to handle invalid inputs (numbers outside 1-7). In this case, print"Invalid day".
Note
Please note that in our system, the counting of days in the week starts on Monday. So, the first day is Monday, the second is Tuesday, and so on.
Lösning
solution.java
Tack för dina kommentarer!
single