Question: Loop 1: Write a for loop that displays the sum and a floating point average of values from 2 up to and including 35 with
Loop 1: Write a for loop that displays the sum and a floating point average of values from 2 up to and including 35 with loop interval (step count) of 3 Output: SUM: 222 AVERAGE: 18.5
Loop 2: Modify the above loop to input parameters for the starting loop index, loop ending index, and loop interval (step count). Again output the average and sum. Sample Input/Output Starting Index: 0 Ending Index: 10 Step Count: 5 SUM: 15 AVERAGE: 5
Loop 3: Write a loop that counts down from a provided starting point to 0 in loop steps of 0.5 and outputs a comma separated list of values without a trailing comma. Sample Output: For an input value of 5 Output is: 5,4.5,4,3.5,3,2.5,2,1.5,1,0.5,0
This is using C++
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
