標題:
for 迴圈 (二)
[打印本頁]
作者:
tonyh
時間:
2014-9-27 11:16
標題:
for 迴圈 (二)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=5)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-9-27 11:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int o=5; o<=100; o=o+5)
{
cout<<o<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-9-27 11:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<=100; i+=5)
{
cout<<i<<"\a"
<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2014-9-27 11:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=5;i<105;i+=5)
{
cout<<i<<".";
}
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-9-27 11:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=5;i<=100;i+=5)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-9-27 11:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=5)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2