標題:
while 迴圈(二)
[打印本頁]
作者:
歐柏罕
時間:
2017-12-16 14:09
標題:
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-16 14:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count <= 100)
{
cout << count << endl;
count+=2;
}
system("pause");
return 0;
複製代碼
作者:
吳秉翰
時間:
2017-12-16 14:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=2;
while(count <= 100)
{
cout << count << endl;
count+=2;
}
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-12-16 14:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num=0;
while(num <=100)
{
cout<<num<<endl;
num+=2;
}
system("pause");
return 0;
}
複製代碼
作者:
王駿愷
時間:
2017-12-16 14:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count<=100)
{
cout<< count << endl;
count+=2;
}
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-12-16 14:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int count=0;
while(count <= 100)
{
cout << count << endl;
count+=2;
}
system("pause");
return 0;
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2