Computer Programming
262 subscribers
58 photos
15 videos
55 files
16 links
- Programming Lessons
- Daily problems
- Guide books

Murojaat: @asadbek_tolqinjonov
Download Telegram
Bool.pdf
602.6 KB
Bool uchun qo'llanma.

#cpp

@cpp_sirius👨‍💻
main.cpp
3.2 KB
2-dars davomida yozilgan kodlar.

#cpp

@cpp_sirius👨‍💻
👍1
#cpp
#problem 16

Solution ⌨️

@cpp_sirius👨‍💻
🔥1
Live stream scheduled for
Sorry for the lateness.

A few minutes, then we'll start.

Be prepared
🔥2
Live stream started
Boshlayapmiz....
Kiramiz Gooo
Ovoz?
👍2
Ekran?
1👍1
What you can learn?
— if-else statement
— switch case
— Solving extra problems
— GitHub uploading
23 va 24
Rostlikka tekshirish: true yoki false?
Computer Programming
23 va 24
// begin 24
// 2 ta yechim, 1 ta yechim, yo'q
// D>=0
// float a, b, c, d;
// cin >> a >> b >> c;
// d = pow(b,2) - 4*a*c;
// bool k = d>=0;
// cout<<boolalpha<<k;
Savollar bo'lsa yozing.
if (shart) {
true_operator;
} else {
false_operator;
}
// int uch , yuz, bir;
// cout<<"Uch xonali son kiriting: "; cin>>uch;
// yuz = uch / 100;
// bir = uch % 10;
// if (yuz==bir) {
// cout<<"Palindrom";
// } else {
// cout<<"Palindrom emas";
// }