1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#include <iostream> /* * * 3.1, 1.10 * * */ using std::cout; using std::cin; using std::endl; int main () { int i = 10; while(i >= 0) { cout << i << endl; i--; } return 0; }