Question: Write a program that duplicates the sample run shown at the bottom , which displays the sum of the first n integers for each value
Write a program that duplicates the sample run shown at the bottom , which displays the sum of the first n integers for each value of n from 1 to 10. As the output suggests, these numbers can be arranged to form a triangle and are therefore called triangle numbers
1 = 1
1 + 2 = 3
1 + 2 + 3 = 6
1 + 2 + 3 + 4 = 10
1 + 2 + 3 + 4 + 5 = 15
1 + 2 + 3 + 4 + 5 + 6 = 21
1 + 2 + 3 + 4 + 5 + 6 + 7 = 28
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 = 36
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 = 45
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 = 55
You are required to implement two loops. The outer loop will go from 1 to n. The inner loop will sum from 1 to i and compute each row of sums. Prompt the user for the value n.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
