#include <iostream>
using namespace std;
int main() {
int i;
for(i=0; i <= 11; i+=3)
cout << i;
cout << endl << i << endl;
}
輸出爲:0 3 6和9,然後一旦退出循環的12 的我的環路內部和外部地址出現在同一個C++:for循環的範圍?
我需要知道的是:是的我for循環中的內容與在for循環外部初始化的I相同,因爲變量i在我創建的for循環之前首次初始化?
這對我來說更有意義,謝謝。 – John 2010-09-04 00:29:23
很好解釋! – 2010-09-04 04:00:36