Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Manipulations with Arrays | Intro to Arrays
Introduction to C++ | Mobile-Friendly

bookManipulations with Arrays

You can also use for loops in arrays to find the sum of all elements:

12345678
int numbers[4] = {42, 12, 56, 98}; int sum = 0; for (int i = 0; i <= 3; i++) { &nbsp;&nbsp;&nbsp;&nbsp; sum += numbers[i]; } cout << sum;
copy

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];
}
question mark

What does the following code do?

for (int i = 0; i <= 9; i++) { mul *= numbers[i]; }

Select the correct answer

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 5. Capítulo 3

Pregunte a AI

expand

Pregunte a AI

ChatGPT

Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla

Suggested prompts:

Pregunte me preguntas sobre este tema

Resumir este capítulo

Mostrar ejemplos del mundo real

Awesome!

Completion rate improved to 3.7

bookManipulations with Arrays

Desliza para mostrar el menú

You can also use for loops in arrays to find the sum of all elements:

12345678
int numbers[4] = {42, 12, 56, 98}; int sum = 0; for (int i = 0; i <= 3; i++) { &nbsp;&nbsp;&nbsp;&nbsp; sum += numbers[i]; } cout << sum;
copy

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];
}
question mark

What does the following code do?

for (int i = 0; i <= 9; i++) { mul *= numbers[i]; }

Select the correct answer

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 5. Capítulo 3
some-alt