標題:
while 迴圈
[打印本頁]
作者:
tonyh
時間:
2017-12-6 17:07
標題:
while 迴圈
利用while迴圈, 垂直列出 1~20.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1; //初始值
while(i<=20) //持續運作的條件
{
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-12-6 17:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=20)
{
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2017-12-6 17:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=20)
{
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
李沛昂
時間:
2017-12-6 17:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=20)
{
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
作者:
蒙鎧柔
時間:
2017-12-6 17:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=20)
{
cout<<i<<endl;
i++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2