-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExample5.java
35 lines (30 loc) · 959 Bytes
/
Example5.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
25
26
27
28
29
30
31
32
33
34
35
import java.util.Scanner;
public class Example5 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String weekText = ""; // matn qiymatlarni o'zlashtirish uchun
int hafta = scanner.nextInt();
switch (hafta) {
case 1: {
weekText = "Dushanba";
System.out.println("dushanbalik ishlar");
break;
}
case 2: {
weekText = "Seshanba";
System.out.println("seshanbalik ishlar");
break;
}
case 3: {
weekText = "chorshanba";
System.out.println("chorshanbalik ishlar");
break;
}
default: {
weekText = "boshqa kun";
System.out.println("Bunday hafta kuni mavjud emas");
}
}
System.out.println(weekText);
}
}