uz
Feedback
PROGRAMMERS

PROGRAMMERS

Kanalga Telegram’da o‘tish
960
Obunachilar
Ma'lumot yo'q24 soatlar
-17 kunlar
-1630 kunlar
Postlar arxiv
#savol_cpp_case_9 Telegram | Viktorina bot | Portfolio | YouTube
#savol_cpp_case_9 Telegram | Viktorina bot | Portfolio | YouTube

#javob_cpp_case_8 #include <bits/stdc++.h> using namespace std; int main(){ int d, m; cout << "(1 - 31) oraliqdagi son kiriting: "; cin >> d; cout << "(1 - 12) oraliqdagi son kiriting: "; cin >> m; switch (m) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: { if (d <= 31 && m == 1) { cout << d << " - yanvar"; } else if (d <= 31 && m == 3) { cout << d << " - mart"; } else if (d <= 31 && m == 5) { cout << d << " - may"; } else if (d <= 31 && m == 7) { cout << d << " - iyul"; } else if (d <= 31 && m == 8) { cout << d << " - avgust"; } else if (d <= 31 && m == 10) { cout << d << " - oktabr"; } else if (d <= 31) { cout << d << " - dekabr"; } else { cout << "Bunday kun yo'q"; } } break; case 4: case 6: case 9: case 11: { if (d <= 30 && m == 4) { cout << d << " - aprel"; } else if (d <= 30 && m == 6) { cout << d << " - iyun"; } else if (d <= 30 && m == 9) { cout << d << " - sentabr"; } else if (d <= 30) { cout << d << " - noyabr"; } else { cout << "Bunday kun yo'q"; } } break; case 2: { if (d <= 28) { cout << d << " - fevral"; } else { cout << "Bunday kun yo'q"; } } break; default: cout << "Xato"; } } Telegram | Viktorina bot | Portfolio | YouTube

#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 &lt;&lt; "O'girlik kiriting = "; cin &gt;&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