Answer to Question #275387 in C++ for Rille

Question #275387

Make a program code reverse the display from N to 1 to 1-N, and how to accept the value N?

1
Expert's answer
2021-12-04T20:52:10-0500
#include <iostream>

int main(void) {
 int n;
 cin >> n; // accepting value of n from stdin
 for (int i = n; i > 0; i--)
  cout << i << " "; // print numbers from 1 to N in reverse order
 return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment