Days of the week in java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Days of the week in java

i need help to print all the days of the week after the switch statements like maybe Monday Tuesday Wednesday Thursday Friday Saturday Sunday after the switch statement here is my code package daysoftheweek; public class DaysOfTheWeek { public static void main(String[] args) { int day = 3; switch(day){ case 1: System.out.println("Monday"); break; case 2: System.out.println("Tuesday"); break; case 3: System.out.println("Wednesday"); break; case 4: System.out.println("Thursday"); break; case 5: System.out.println("Friday"); break; case 6: System.out.println("Saturday"); break; case 7: System.out.println("Sunday"); break; } } }

29th Sep 2019, 6:34 PM
Nana Kofi
Nana Kofi  - avatar
2 Answers
+ 5
public class DaysOfTheWeek { public static void main(String[] args) { int day = 1; while(day<8){ switch(day){ case 1: System.out.println("Monday"); break; case 2: System.out.println("Tuesday"); break; case 3: System.out.println("Wednesday"); break; case 4: System.out.println("Thursday"); break; case 5: System.out.println("Friday"); break; case 6: System.out.println("Saturday"); break; case 7: System.out.println("Sunday"); break; } day++; } } }
29th Sep 2019, 6:54 PM
Farhan
Farhan - avatar
0
@Farhan thank you
29th Sep 2019, 7:14 PM
Nana Kofi
Nana Kofi  - avatar