- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int count=0;
- // 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; // 印出變數
- //}
-
- while(count <= 10)//條件,條件成立才會進入迴圈
- {
- cout << count << endl;
- count++;
- }
-
- system("pause");
- return 0;
- }
複製代碼 |