#include<iostream>using namespace std;int main(){ int x = 10; while(x --> 0) // 令x趋近于0,依次输出x cout << x << endl; return 0;}
#include<iostream> using namespace std; int main(){ int x = 10; while(x --> 0) // 令x趋近于0,依次输出x cout << x << endl; return 0; }
羁绊的守望者 发表于 2015-1-17 20:21 意思大概是每次取前趋,直到等于?