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