|
For迴圈 (一)
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- // for(初始值;條件;運算方式)
- for(int i=0;i<=10;i++) //i++ => i=i+1 i-- => i=i-1 i=i/1
- {
- //cout << "i" << endl; // 印出字串
- cout << i << endl; // 印出變數
- }
- system("pause");
- return 0;
- }
複製代碼 |
|