
Jeff W. answered 09/30/22
Retired Software Engineer tutoring C/C++, C#, Python
I think your main problem is that you aren't quite understanding the question so let me try to tackle that. I hope this is helpful.
The code given takes input from the user of the program but there is no additional input required in your function. The inputs are the two numbers: numberA and numberB.
Your function is supposed to print all of the integers starting at numberB counting down to numberA. So if numberA is 1000 and numberB is 1005, your function should print the following:
1005
1004
1003
1002
1001
1000
You might want to consider using a for loop in your implementation of the printValues function.

Jeff W.
No problem!09/30/22
Raymond P.
Okay, yeah, I definitely didn't understand what the question was asking for. It's so simple when its put like that. Thank you very much!09/30/22