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

Murojaat: @asadbek_tolqinjonov
Download Telegram
Forwarded from Computer Programming 1
week10.1.pdf
90.9 KB
2
Forwarded from Computer Programming 1
Homework tasks
2
Which problem do you want us to solve
Computer Programming 1
week10.1.pdf
Problem 5 Solution

#cpp
Problem 12 Solution

#cpp
@cpp_sirius👨‍💻
🔢 Sezar shifrlash algoritmi

#cpp

@cpp_sirius👨‍💻
1
‼️Lesson day‼️

Today we are going to conduct an extra lesson!

💻 Computer Programming
🗓️ Saturday, 1st November
🕓 Time: 21:00
🧩Arrays


@cpp_sirius👨‍💻
9
We are starting...
Live stream started
<—Array—>

What is Array?
Entering and printing elements
Problems
With Functions
Ovozim yaxshimi?
💯2
Ekran?
1💯1
Massiv - bir xil toifali, chekli qiymatlar to'plami.
// E'lon qilish
// <toifa> <massiv_nomi>[elementlari soni] = {elementlar qiymatlari};
// elementlar soni = o'lchami(size)
int numbers[4] = {2, 3, 0, -5};
// 2 -> 0; 3-> 1; 0 -> 2; -5 -> 3
// Index 0dan n-1gacha;
bool a[5] = {true, true, false, false, true};
int b[100] = {12, 13, 14};
double h[34];
cin>>h[0];
cout<<h[0];
Savollaringni berib ketinglar
// Massivning barcha elementlariga qiymat berish:
int nums[10];
for(int i=0; i<10; i++){
cin>>nums[i];
}
// Chiqarish:
for(int i=0; i<10; i++){
cout<<nums[i]<<" ";
}