- Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswitch1.java
24 lines (21 loc) · 804 Bytes
/
switch1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
packageexample;
importjava.util.Scanner;
publicclassswitch1 {
publicstaticvoidmain(String[] args) {
Scannerscanner =newScanner(System.in);
System.out.println("Sonni kiriting: ");// -> : case: Break shart -> shart emas
intnumber= scanner.nextInt();
switch (number){
case1 -> {
System.out.println("Dushanba");
}
case2-> System.out.println("Seshanba");
case3-> System.out.println("Chorshanba");
case4-> System.out.println("Payshanba");
case5-> System.out.println("Juma");
case6-> System.out.println("Shanba");
case7-> System.out.println("Yakshanba");
default -> System.out.println("Bunday hafta kun yo`q !");
}
}
}