IDNLearn.com: Where curiosity meets clarity and questions find their answers. Get step-by-step guidance for all your technical questions from our dedicated community members.

Write a for loop that prints from startNumber to finalNumber. Ex: If the input is: -3 1 the output is: -3 -2 -1 0 1

Sagot :

Answer:

Pseudocode (I'm not going to give you the real solution, you will learn more by figuring it out yourself):

for (int i = startNumber; i < finalNumber+1; i++)

   output concatenate(i, " ")

exit "0"

Explanation: