fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a = 10;
  6. while ( a --\
  7. \
  8. \
  9. \
  10. > 0)
  11. {
  12. std::cout << a << std::endl;
  13. }
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
9
8
7
6
5
4
3
2
1
0