標題:
while 迴圈(一)
[打印本頁]
作者:
歐柏罕
時間:
2017-12-16 17:15
標題:
while 迴圈(一)
#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; // 印出變數
//}
//while迴圈的架構
//while(/*條件*/)
//{
//條件成立才執行,不成立則全部忽略
//}
int count=0;
while(count <= 10)//條件,條件成立才會進入迴圈
{
cout << count << endl;
count++;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡佳承
時間:
2017-12-16 17:17
此帖僅作者可見
作者:
戴嘉禾
時間:
2017-12-16 17:17
此帖僅作者可見
作者:
顏詢
時間:
2017-12-16 17:20
此帖僅作者可見
作者:
佳
時間:
2017-12-16 17:25
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2