Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Challenge: Cumulative Sum | For Loop
C Loops for Beginners

bookChallenge: Cumulative Sum

Tâche

Swipe to start coding

Write a function that calculates the cumulative sum of all integers from 1 up to a given positive integer n using a for loop.

  • Define a function named cumulativeSum that takes an integer n as its parameter;
  • Use a for loop to add all numbers from 1 to n and store the result;
  • Return the final sum from the function;
  • Do not use any library functions for summation; implement the logic using a for loop only.

Solution

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 3
single

single

Demandez à l'IA

expand

Demandez à l'IA

ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

Suggested prompts:

Can you explain this in simpler terms?

What are the main points I should remember?

Can you give me an example?

close

bookChallenge: Cumulative Sum

Glissez pour afficher le menu

Tâche

Swipe to start coding

Write a function that calculates the cumulative sum of all integers from 1 up to a given positive integer n using a for loop.

  • Define a function named cumulativeSum that takes an integer n as its parameter;
  • Use a for loop to add all numbers from 1 to n and store the result;
  • Return the final sum from the function;
  • Do not use any library functions for summation; implement the logic using a for loop only.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 3
single

single

some-alt