標題:
while 迴圈
[打印本頁]
作者:
tonyh
時間:
2015-6-12 21:20
標題:
while 迴圈
本帖最後由 tonyh 於 2015-6-12 21:24 編輯
利用while迴圈, 垂直列出 1~20.
作者:
沈子耕
時間:
2015-6-12 21:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int i=1;
while(i<=20){
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-6-12 21:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=20){
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-6-12 21:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=20)
{
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2