標題:
while 迴圈(二)
[打印本頁]
作者:
歐柏罕
時間:
2017-12-11 19:37
標題:
while 迴圈(二)
印出2~100所有2的倍數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count <= 100)//條件,條件成立才會進入迴圈
{
count=count+2;
cout << count << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
沈子晏
時間:
2017-12-11 19:38
此帖僅作者可見
作者:
洪翊展
時間:
2017-12-11 19:39
此帖僅作者可見
作者:
盧佑芯
時間:
2017-12-11 19:39
此帖僅作者可見
作者:
盧佑恩
時間:
2017-12-11 19:40
此帖僅作者可見
作者:
洪翊庭
時間:
2017-12-11 19:40
此帖僅作者可見
作者:
李治毅
時間:
2017-12-19 19:19
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2