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

Murojaat: @asadbek_tolqinjonov
Download Telegram
Tushunyapsizlarmi?
// Problem 13 - Kvadrat tenglama
// Yechimi yo'q D<0
// Bitta yechim D==0 x = -b/2a
// Ikkita yechim D>0 x1 = (-b+sqrt(D))/(2*a); x2 = (-b-sqrt(D))/(2*a)

// float a, b, c, x1, x2, D;
// cout<<"Enter the coefitcents of Quadratic equation: "; cin>>a>>b>>c;
// D = pow(b,2) - 4*a*c;
// if(D<0){
// cout<<"Ildizi yo'q";
// }else if(D==0){
// x1 = -b/(2*a);
// cout<<"x = "<<x1;
// }else{
// x1 = (-b+sqrt(D))/(2*a);
// x2 = (-b-sqrt(D))/(2*a);
// cout<<"x1 = "<<x1<<endl;
// cout<<"x2 = "<<x2<<endl;
// }
// 1.c
// int n; cin>>n;
// float S = 0;
// float P=1;
// for(float i=1; i<=n; i++){
// P*=i;
// S+=1/P;
// }
// cout<<"S = "<<S;
Sizlarda problems bormi?
Live stream finished (1 hour)
If you have any questions
Write @asadbek_tolqinjonov
Media is too big
VIEW IN TELEGRAM
πŸŽ₯Lesson 6
πŸ’»C++ Programming
🧩Hard Problems

#cpp

@cpp_siriusπŸ‘¨β€πŸ’»
Sikl operatorlari.pdf
1.4 MB
For-while.

Problemsβœ…

@cpp_siriusπŸ‘¨β€πŸ’»
Terminal Commands
‼️ Attention

We asked professor to give last year's midterm questions from CP1. But Prof doesn't want to give.
🀬7
Good luck to everyone on today’s exam!

Ace the testπŸ™Œ
❀8