Manipulations with Arrays
You can also use for loops in arrays to find the sum of all elements:
12345678int numbers[4] = {42, 12, 56, 98}; int sum = 0; for (int i = 0; i <= 3; i++) { sum += numbers[i]; } cout << sum;
Here the variable sum will store the sum of all elements, initially, it’s equal to 0. Then we iterate through the array using for loops and add each element to the variable sum.
You can also store in arrays the data from the user:
int numbers[4];
int sum = 0;
for (int i = 0; i <= 3; i++) {
cout << "Type the number: ";
cin >> numbers[i];
sum += numbers[i];
}
Дякуємо за ваш відгук!
Запитати АІ
Запитати АІ
Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат
Запитайте мені питання про цей предмет
Сумаризуйте цей розділ
Покажіть реальні приклади
Awesome!
Completion rate improved to 3.7
Manipulations with Arrays
Свайпніть щоб показати меню
You can also use for loops in arrays to find the sum of all elements:
12345678int numbers[4] = {42, 12, 56, 98}; int sum = 0; for (int i = 0; i <= 3; i++) { sum += numbers[i]; } cout << sum;
Here the variable sum will store the sum of all elements, initially, it’s equal to 0. Then we iterate through the array using for loops and add each element to the variable sum.
You can also store in arrays the data from the user:
int numbers[4];
int sum = 0;
for (int i = 0; i <= 3; i++) {
cout << "Type the number: ";
cin >> numbers[i];
sum += numbers[i];
}
Дякуємо за ваш відгук!