โ Back to Functions
Question 250
Sum from 1 to N
Sum from 1 to N
Write a function int sumTo(int n) that returns the sum of all integers from 1 to n (1 + 2 + ... + n).
For sumTo(5) the program prints 15.Expected Output:
15
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.