Question: Please use Java not C++ 7.2) Do this: Write the code that will produce the output described. Use nested loops and the code from 2.1)
Please use Java not C++
7.2) Do this: Write the code that will produce the output described. Use nested loops and the code from 2.1) to produce the output below. The outer loop control variable can be used to help write the inner loop The sum of positive integers from 1 to 1 is 1 The sum of positive integers from 1 to 2 is 3 The sum of positive integers from 1 to 3 is 6 The sum of positive integers from 1 to 4 is 10 The sum of positive integers from 1 to 5 is 15... The sum of positive integers from 1 to 100 is 5050 Because we already have a program that computes 1 + 2 + + n for any positive integer n, we can embed that code in a second loop that loops 100 times. The outside loop control variable can be used to control the number of times we loop and more importantly, it can be used to control the upper limit of the inner computation
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
