標題:
while 迴圈 (二)
[打印本頁]
作者:
王瑞喻
時間:
2020-7-25 15:57
標題:
while 迴圈 (二)
試以 while 迴圈, 垂直列出 100 以內所有 3 的倍數.
作者:
李柏穎
時間:
2020-7-25 15:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=3;
while(i<=100)
{
cout<<i<<endl;
i+=3;
}
system("pause");
return 0;
}
複製代碼
作者:
董定宇
時間:
2020-7-25 16:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=3;
while(i<=100)
{
cout<<i<<endl;
i+=3;
}
system("pause");
return 0;
}
複製代碼
作者:
鐘彥博
時間:
2020-7-25 16:07
本帖最後由 鐘彥博 於 2020-7-25 16:10 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=0;
while(i<=100)
{
cout<<i<<endl;
i+=3;
}
system("pause");
return 0;
}
複製代碼
作者:
潘堉恩
時間:
2020-7-25 16:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=0;
while(i<=100)
{
cout<<i<<endl;
i=i+3;
}
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2020-7-25 16:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=0;
while(i<=100)
{
cout<<i<<endl;
i+=3;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2