1.02K subscribers
1.77K photos
420 videos
676 files
3.85K links
Download Telegram
Forwarded from Programmers Portfolio
Notes ilovasi

Ushbu bottomni bossagiz bottom sheet ochiladi

Portfolio | Programmers | Bot
👍21
Forwarded from Programmers Portfolio
Notes ilovasi

BottomSheet oynasining ko'rinishi. Bundan tashqari rasmlarni hamda, web manzillarni ham qo'shish mumkin

Portfolio | Programmers | Bot
👍2👏1
Forwarded from Programmers Portfolio
Notes ilovasi

Barcha ma'lumotlarni to'ldirganingizdan so'ng, tanlagan rangingizga qarab tahminan shunday qaydlar hosil bo'ladi

Portfolio | Programmers | Bot
👍2🤩1
Forwarded from Programmers Portfolio
Notes ilovasi

Saqlagan qaydingizni ustiga bossangiz, tahminan shunday oyna hosil bo'ladi. Bu yerda qaydingizdagi barcha ma'lumotlaringizni o'zgartirishingiz mumkin

Portfolio | Programmers | Bot
👍21
Forwarded from Programmers Portfolio
Notes ilovasi

Ha aytgancha, qaydingizdagi ma'lumotlarni yozishga erinsangiz, ushbu botonni bosib ovozli xabarda ham yozishingiz mumkin.

Eslatma ovozli xabar internet bilan ishlaydi

Portfolio | Programmers | Bot
👍2🏆1
1👍1🔥1
👍1🔥1🤩1
👍1👏1🏆1
👍1🔥1🥰1
#javob_java_case_16

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("(20 - 69) oralig'ida son kiriting: ");
int n = scanner.nextInt();
int a = n / 10;
int b = n % 10;
switch (a) {
case 2 -> System.out.print("yigirma ");
case 3 -> System.out.print("o'ttiz ");
case 4 -> System.out.print("qirq ");
case 5 -> System.out.print("ellik ");
case 6 -> System.out.print("oltmish ");
}
switch (b) {
case 1 -> System.out.println("bir");
case 2 -> System.out.println("ikki");
case 3 -> System.out.println("uch");
case 4 -> System.out.println("to'rt");
case 5 -> System.out.println("besh");
case 6 -> System.out.println("olti");
case 7 -> System.out.println("yetti");
case 8 -> System.out.println("sakkiz");
case 9 -> System.out.println("to'qqiz");
}
}

Telegram | Viktorina bot | Portfolio | YouTube
👍1👏1🏆1
👍1🔥1🐳1
👍21👏1
👍2🔥1🏆1
👍1🔥1👏1
#javob_java_case_17

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("(10 - 40) oralig'ida son kiriting: ");
int n = scanner.nextInt();
int a = n / 10;
int b = n % 10;
switch (a) {
case 1 -> System.out.print("o'n ");
case 2 -> System.out.print("yigirma ");
case 3 -> System.out.print("o'ttiz ");
case 4 -> System.out.print("qirq ");
}
switch (b) {
case 1 -> System.out.println("bir ta masala");
case 2 -> System.out.println("ikki ta masala");
case 3 -> System.out.println("uch ta masala");
case 4 -> System.out.println("to'rt ta masala");
case 5 -> System.out.println("besh ta masala");
case 6 -> System.out.println("olti ta masala");
case 7 -> System.out.println("yetti ta masala");
case 8 -> System.out.println("sakkiz ta masala");
case 9 -> System.out.println("to'qqiz ta masala");
}
}

Telegram | Viktorina bot | Portfolio | YouTube
1👍1🏆1
👍1🔥1🤩1
Java dasturlash tilida 2 xil toifa mavjud
1. Primitive
2. Reference (non primitive)

Primitive toifaga misollar - byte, short, int, long, float, double, boolean, char
Reference toifaga misollar - String, Arrays, Classes, Interface


primitive and reference in java
reference types in kotlin

Telegram | ViktorinBot | Portfolio | YouTube
21👍1
Kotlin dasturlash tilida faqat Reference (non primitive) toifa mavjud

Reference toifaga misollar - Byte, Short, Int, Long, Float, Double, Boolean, Char, String, Array, Classe, Interface

Telegram | ViktorinBot | Portfolio | YouTube
👍1🔥1🏆1
#javob_java_case_18

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("(100 - 999) oralig'ida son kiriting: ");
int n = scanner.nextInt();
int a = n / 100;
int b = (n / 10) % 10;
int c = n % 10;
switch (a) {
case 1 -> System.out.print("bir yuz");
case 2 -> System.out.print("ikki yuz");
case 3 -> System.out.print("uch yuz");
case 4 -> System.out.print("to'rt yuz");
case 5 -> System.out.print("besh yuz");
case 6 -> System.out.print("olti yuz");
case 7 -> System.out.print("yetti yuz");
case 8 -> System.out.print("sakkiz yuz");
case 9 -> System.out.print("to'qqiz yuz");
}
switch (b) {
case 1 -> System.out.print(" o'n ");
case 2 -> System.out.print(" yigirma ");
case 3 -> System.out.print(" o'ttiz ");
case 4 -> System.out.print(" qirq ");
case 5 -> System.out.print(" ellik ");
case 6 -> System.out.print(" oltmish ");
case 7 -> System.out.print(" yetmish ");
case 8 -> System.out.print(" sakson ");
case 9 -> System.out.print(" to'qson ");
}
switch (c) {
case 1 -> System.out.println("bir");
case 2 -> System.out.println("ikki");
case 3 -> System.out.println("uch");
case 4 -> System.out.println("to'rt");
case 5 -> System.out.println("besh");
case 6 -> System.out.println("olti");
case 7 -> System.out.println("yetti");
case 8 -> System.out.println("sakkiz");
case 9 -> System.out.println("to'qqiz");
}
}

Telegram | Viktorina bot | Portfolio | YouTube
👍5