TGINSIGHT CHAT
Computer Programming
@cpp_sirius
Education- Programming Lessons - Daily problems - Guide books Murojaat: @asadbek_tolqinjonov
Siste innlegg
Side 4 av 33 · 395 innlegg
Publisert 29. des.
Publisert 25. des.
🗃All Lab files from First Semester #cp1
Hashtags
Publisert 23. des.
You❓
Publisert 23. des.
How was your result?
Publisert 16. des.
Computer Programming 1 Videos Lesson 1: C++ Basics: Integers, Program Structure, and Math Library Lesson 2: Boolean Lesson 3: Conditional Statements in C++ (if–else, switch) Lesson 4: For and while loops Lesson 5: Functions Lesson 6: Hard problems Lesson 7: Arrays Lesson 8: Matrix and Vectors Lesson 9: *Pointers Lesson 10: File Handling
Publisert 15. des.
Resit imitihoniga qolganlar uchun 👇 https://t.me/criticalpoint_calculus
Publisert 14. des.
You❓
Publisert 12. des.
‼️Guys‼️ Can anyone send me complete and clear questions of B examʼs coding part?
Publisert 12. des.
How was the exam? Leave comments 👇
Publisert 12. des.
A exam. 10-point problem #include <iostream> using namespace std; int lcm(int num1, int num2) { int a = num1; int b = num2; while (b>0) { a = a%b; int temp = b; b = a; a = temp; } return num1*num2/a; } int main() { cout << lcm(48,18); return 0; }
Publisert 12. des.
A exam. 20 points problem: int** createMatrix(int rows, int cols) { int** matrix = new int*[rows]; for (int i = 0; i < rows; i++) { matrix[i] = new int[cols]; } for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { matrix[i][j] = i + j; } } return matrix; }
Publisert 11. des.
🎓 Students! I hope today's exam goes smoothly and you feel confident about every question. Wishing you clear mind🧠, confidence 🙂↔️ and great results✅. Good luck!🤞