98.0k views
0 votes
This Is For C++ 1) Write A For Loop That Displays The Following Set Of Numbers: 0, 10, 20, 30, 40, 50...1000 2)Write A Loop That Asks The User To Enter A Number. The Loop Should Iterate 10 Times And Keep A Running Total Of The Numbers Entered. 3) Write A Nested Loop That Displays 10 Rows Of '#' Characters. There Should Be 15 '#' Characters In Each Row.

1 Answer

1 vote

Final answer:

The student's tasks involve creating loops in C++: a for-loop to display numbers in increments, a loop to total user-entered numbers, and a nested loop for displaying rows of '#' characters.

Step-by-step explanation:

Addressing the C++ Looping Exercise

To tackle the exercises provided, you'll be working with for-loops and nested loops in C++. Below are the solutions to each task requested:

  1. Displaying a Set of Numbers: Use a for-loop to iterate from 0 to 1000, increasing by 10 each time, and print the current iteration value.
  2. Accumulating User Input: Prompt the user for a number, iterate ten times, and keep a running total.
  3. Generating a Grid of '#' Characters: Use a nested loop to print ten rows of fifteen '#' characters.

User Shimy
by
7.3k points