#include <iostream> using namespace std; int main() { int i = 3; while (i-- > 0) { cout << i << " "; } return 0; }
3 2 1
2 1 0
1 2 3
程序无任何输出