ch
Feedback
965
订阅者
无数据24 小时
-27
-1630
帖子存档
#javob_kotlin_boolean_29 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() p
#javob_kotlin_boolean_29 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() print("x1 = ") val x1 = readLine()!!.toInt() print("y1 = ") val y1 = readLine()!!.toInt() print("x2 = ") val x2 = readLine()!!.toInt() print("y2 = ") val y2 = readLine()!!.toInt() println(x in (x1 + 1) until x2 && y in (y2 + 1) until y1) } Telegram | Viktorina bot | Portfolio

Bubble Sorting int a[6] = {5, 1, 6, 2, 4, 3}; int i, j, temp; for(i=0; i<6, i++) { for(j=0; j<6-i-1; j++) { if( a[j] > a[j+1]) { temp = a[j]; a[j] = a[j+1]; a[j+1] = temp; } } } Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_30 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_30 Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_29 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_29 Telegram | Viktorina bot | Portfolio

#javob_kotlin_boolean_28 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() p
#javob_kotlin_boolean_28 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() println((x > 0 && y > 0) or (x < 0 && y < 0)) } Telegram | Viktorina bot | Portfolio

#javob_kotlin_boolean_27 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() p
#javob_kotlin_boolean_27 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() println((x < 0 && y > 0) or (x < 0 && y < 0)) } Telegram | Viktorina bot | Portfolio

Insertion Sorting int a[6] = {5, 1, 6, 2, 4, 3}; int i, j, key; for(i=1; i<6; i++) { key = a[i]; j = i-1; while(j>=0 && key < a[j]) { a[j+1] = a[j]; j--; } a[j+1] = key; } Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_28 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_28 Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_27 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_27 Telegram | Viktorina bot | Portfolio

#javob_kotlin_boolean_26 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() p
#javob_kotlin_boolean_26 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() println(x > 0 && y < 0) } Telegram | Viktorina bot | Portfolio

#javob_kotlin_boolean_25 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() p
#javob_kotlin_boolean_25 fun main() { print("x = ") val x = readLine()!!.toInt() print("y = ") val y = readLine()!!.toInt() println(x < 0 && y > 0) } Telegram | Viktorina bot | Portfolio

Selection sort void selectionSort(int a[], int size) { int i, j, min, temp; for(i=0; i < size-1; i++ ) { min = i; //setting min as i for(j=i+1; j < size; j++) { if(a[j] < a[min]) //if element at j is less than element at min position { min = j; //then set min as j } } temp = a[i]; a[i] = a[min]; a[min] = temp; } } Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_26 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_26 Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_25 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_25 Telegram | Viktorina bot | Portfolio

🔥Eng yangi va to'liq tushuntirilgan BEPUL Python dasturlash darslarini kutib oling Bu bola YouTube va Telegram kanallariga o
🔥Eng yangi va to'liq tushuntirilgan BEPUL Python dasturlash darslarini kutib oling Bu bola YouTube va Telegram kanallariga o'z video darslarini yuklamoqda. Darslar orqali siz Python dasturlash tilini o'rganishingiz va amaliyotda qo'llab o'z ishlaringizni ham bajarishingiz mumkin. Eng asosiysi darslar 100 BEPUL. Darslar orqali Python dasturlash tilini chuqurroq o'rganing va IT kasblari orqali kelajagingizga zamin yarating! Python tiliga oid o'zbekcha kanalda darslar ulashilmoqda... 👉 @python_dasturlash_darslari

#javob_kotlin_boolean_24 fun main() { print("a = ") val a = readLine()!!.toInt() print("b = ") val b = readLine()!!.toInt() p
#javob_kotlin_boolean_24 fun main() { print("a = ") val a = readLine()!!.toInt() print("b = ") val b = readLine()!!.toInt() print("c = ") val c = readLine()!!.toInt() val d = b * b - 4 * a * c println(d > 0) } Telegram | Viktorina bot | Portfolio

#javob_kotlin_boolean_23 fun main() { print("n = ") val n = readLine()!!.toInt() val a = n / 100 val b = (n / 10) % 10 val c
#javob_kotlin_boolean_23 fun main() { print("n = ") val n = readLine()!!.toInt() val a = n / 100 val b = (n / 10) % 10 val c = n % 10 println(a == c) } Telegram | Viktorina bot | Portfolio

#savol_66 for operatoridan foydalangan holda quyidagi ko'rinishni chiqaruvchi dastur tuzing? Dasturlash tillari: o'zingizga qulay dasturlash tilida Chiquvchi ma'lumot 👇👇👇 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_24 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_24 Telegram | Viktorina bot | Portfolio

#savol_kotlin_boolean_23 Telegram | Viktorina bot | Portfolio
#savol_kotlin_boolean_23 Telegram | Viktorina bot | Portfolio