ch
Feedback
967
订阅者
无数据24 小时
-67
-1930
帖子存档
#javob_cpp_case_8 Telegram | Viktorina bot | Portfolio | YouTube
#javob_cpp_case_8 Telegram | Viktorina bot | Portfolio | YouTube

#savol_cpp_case_8 Telegram | Viktorina bot | Portfolio | YouTube
#savol_cpp_case_8 Telegram | Viktorina bot | Portfolio | YouTube

Navro'z bayramingiz muborak bo'lsin. Huddi shu tugmachadek kuchli bo'ling Telegram | Viktorina bot | Portfolio | YouTube
Navro'z bayramingiz muborak bo'lsin. Huddi shu tugmachadek kuchli bo'ling Telegram | Viktorina bot | Portfolio | YouTube

#javob_cpp_case_7 #include using namespace std; int main(){ int n; float a; cout << "O'girlik kiriting = "; cin >&gt
#javob_cpp_case_7 #include <bits/stdc++.h> using namespace std; int main(){ int n; float a; cout << "O'girlik kiriting = "; cin >> a; cout << "1. kilogramm \n2. milligramm\n3. gramm\n4. tonna\n5. sentner"; cout << "Yuqoridagi amallardan birini tanlang: "; cin >> n; switch (n) { case 1: cout << a << " kilogramm = " << a << " kilogramm"; break; case 2: cout << a << " milligramm = " << (a / 1000000) << " kilogramm"; break; case 3: cout << a << " gramm = " << (a / 1000) << " kilogramm"; break; case 4: cout << a << " tonna = " << (a * 1000) << " kilogramm"; break; case 5: cout << a << " sentner = " << (a * 100) << " kilogramm"; break; default: cout << "Xato"; break; } } Telegram | Viktorina bot | Portfolio | YouTube

#savol_cpp_case_7 Telegram | Viktorina bot | Portfolio | YouTube
#savol_cpp_case_7 Telegram | Viktorina bot | Portfolio | YouTube

YoTube da Kotlin dasturlash tilidan tayyorlangan navbatdagi videodarsligimiz boshlanishiga 30 daqiqa qoldi. Eslatib o'tamiz: Premyera 19:00 da Telegram | ViktorinBot | Portfolio | YouTube

Kotlin Bugun YouTube kanalimizda Kotlin dasturlash tilida tayyorlangan navbatdagi videodarslik chiqadi Premyera 19.03.2023 19:00 Kotlin dasturlash tilida increment va decrement Telegram | ViktorinBot | Portfolio | YouTube

Assalomu aleykum Xurmatli dasturchilar. PROGRAMMERS kanalimizda savol - javob viktorinasini olib borayapmiz. Viktorinamizda berilayotgan savollar va javobllar yuqorida qolib ketganligini hisobga olgan holatda, viktorinamizdagi savol javoblarni @programmersQuiz_bot botiga joylab borayapmiz. Botga a'zo bo'ling. Hali savollar oldida ... Botdagi Java bobigagi If bo'limiga yangi savollar va ularning javoblarini qo'shdik. Viktorina bot Telegram | ViktorinBot | Portfolio | YouTube

#javob_cpp_case_6 #include using namespace std; int main(){ int n,a; cout &lt;&lt; "Uzunlikni kiriting = "; cin &gt;&gt; a; c
#javob_cpp_case_6 #include <bits/stdc++.h> using namespace std; int main(){ int n,a; cout << "Uzunlikni kiriting = "; cin >> a; cout << "1. desimetr \n2. kilometr\n3. metr\n4. millimetr\n5. santimetr"; cout << "Yuqoridagi amallardan birini tanlang: "; cin >> n; switch (n) { case 1: cout << a << " desimetr = " << (a / 10) << " metr"; break; case 2: cout << a << " kilometr = " << (a * 1000) << " metr"; break; case 3: cout << a << " metr = " << (a) << " metr"; break; case 4: cout << a << " millimetr = " << (a / 1000) << " metr"; break; case 5: cout << a << " santimetr = " << (a / 100) << " metr"; break; default: cout << "Xato"; break; } } Telegram | Viktorina bot | Portfolio | YouTube

Repost from SUBYEKTIV
Google’dan har kuni foydalanamiz, lekin uni ofisini hech ko’rganmizmi? 🇺🇸 👉🏼 @subyektivuz

#savol_cpp_case_6 Telegram | Viktorina bot | Portfolio | YouTube
#savol_cpp_case_6 Telegram | Viktorina bot | Portfolio | YouTube

#javob_cpp_case_5 #include using namespace std; int main() { char oper; float num1, num2; cout &lt;&lt; "Enter an operator (+
#javob_cpp_case_5 #include <iostream> using namespace std; int main() { char oper; float num1, num2; cout << "Enter an operator (+, -, *, /): "; cin >> oper; cout << "Enter two numbers: " << endl; cin >> num1 >> num2; switch (oper) { case '+': cout << num1 << " + " << num2 << " = " << num1 + num2; break; case '-': cout << num1 << " - " << num2 << " = " << num1 - num2; break; case '*': cout << num1 << " * " << num2 << " = " << num1 * num2; break; case '/': cout << num1 << " / " << num2 << " = " << num1 / num2; break; default: cout << "Error! The operator is not correct"; break; } return 0; } Telegram | Viktorina bot | Portfolio | YouTube

#savol_cpp_case_5 Telegram | Viktorina bot | Portfolio | YouTube
#savol_cpp_case_5 Telegram | Viktorina bot | Portfolio | YouTube

#javob_cpp_case_4 #include using namespace std; int main(){ int n; cout &lt;&lt; "n = "; cin &gt;&gt; n; switch (n) { case 1:
#javob_cpp_case_4 #include <bits/stdc++.h> using namespace std; int main(){ int n; cout << "n = "; cin >> n; switch (n) { case 1: cout << "31"; break; case 2: cout <<"28"; break; case 3: cout <<"31"; break; case 4: cout <<"30"; break; case 5: cout <<"31"; break; case 6: cout << "30"; break; case 7: cout <<"31"; break; case 8: cout <<"30"; break; case 9: cout <<"30"; break; case 10: cout <<"31"; break; case 11: cout <<"30"; break; case 12: cout <<"31"; break; default: cout <<"Xato"; break; } } Telegram | Viktorina bot | Portfolio | YouTube

#savol_cpp_case_4 Telegram | Viktorina bot | Portfolio | YouTube
#savol_cpp_case_4 Telegram | Viktorina bot | Portfolio | YouTube

#javob_cpp_case_3 #include using namespace std; int main(){ int n; cout &lt;&lt; "n = "; cin &gt;&gt; n; switch (n) { case 1:
#javob_cpp_case_3 #include <bits/stdc++.h> using namespace std; int main(){ int n; cout << "n = "; cin >> n; switch (n) { case 1: cout << "Qish"; break; case 2: cout <<"Qish"; break; case 3: cout <<"Bahor"; break; case 4: cout <<"Bahor"; break; case 5: cout <<"Bahor"; break; case 6: cout << "Yoz"; break; case 7: cout <<"Yoz"; break; case 8: cout <<"Yoz"; break; case 9: cout <<"Kuz"; break; case 10: cout <<"Kuz"; break; case 11: cout <<"Kuz"; break; case 12: cout <<"Qish"; break; default: cout <<"Xato"; break; } } Telegram | Viktorina bot | Portfolio | YouTube

#savol_cpp_case_3 Telegram | Viktorina bot | Portfolio | YouTube
#savol_cpp_case_3 Telegram | Viktorina bot | Portfolio | YouTube

#javob_cpp_case_2 #include using namespace std; int main(){ int n; cout &lt;&lt; "n = "; cin &gt;&gt; n; switch (n) { case 1:
#javob_cpp_case_2 #include <bits/stdc++.h> using namespace std; int main(){ int n; cout << "n = "; cin >> n; switch (n) { case 1: cout << "Yomon"; break; case 2: cout <<"Qoniqarsiz"; break; case 3: cout <<"Qoniqarli"; break; case 4: cout <<"Yaxshi"; break; case 5: cout <<"A'lo"; break; default: cout <<"Xato"; break; } } Telegram | Viktorina bot | Portfolio | YouTube