82.9k views
1 vote
Functions with loops C++

Define the function PrintValues() that takes two integer parameters and outputs all integers starting with the first and ending with the second parameter, each multiplied by 1000 and followed by a newline. The function does not return any value.
Ex: If the input is 2 6, then the output is:
2000
3000
4000
5000
6000
Note: Assume the first integer parameter is less than the second.
------------------------------------
#include
using namespace std;

/* Your code goes here */

int main() {
int numberA;
int numberB;

cin >> numberA;
cin >> numberB;
PrintValues(numberA, numberB);

return 0;
}

User Derigel
by
8.3k points

1 Answer

1 vote

Answer:

Here's the pseudocode for the PrintValues() function:

function PrintValues(numberA, numberB)

for i = numberA to numberB

print i * 1000

print newline

end for

end function

Step-by-step explanation:

This function takes two integer parameters numberA and numberB. It then loops through all integers between numberA and numberB, inclusive. For each integer, it multiplies it by 1000 and prints the result, followed by a newline.

User Whitley
by
7.4k points