fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(int,char*[]) {
  6. unsigned N = 7;
  7. for ( unsigned n = N; n <= N; --n )
  8. cout << n << endl;
  9. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
7
6
5
4
3
2
1
0