標題:
while 迴圈(一)
[打印本頁]
作者:
歐柏罕
時間:
2017-12-16 13:57
標題:
while 迴圈(一)
本帖最後由 歐柏罕 於 2017-12-16 13:59 編輯
本帖隱藏的內容需要回復才可以瀏覽
作者:
康紘嘉
時間:
2017-12-16 13:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count <= 10)
{
cout << count << endl;
count++;
}
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-12-16 13:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num=0;
while(num <=10)
{
cout<<num<<endl;
num++;
}
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2017-12-16 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count <= 10)
{
cout << count << endl;
count++;
}
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-12-16 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count <= 10)
{
cout << count << endl;
count++;
}
system("pause");
return 0;
}
複製代碼
作者:
王駿愷
時間:
2017-12-16 14:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count <= 10)
{
cout << count << endl;
count++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2