標題:
for迴圈 (五) - 倒數300到150, 所有3的倍數
[打印本頁]
作者:
tonyh
時間:
2011-12-7 13:39
標題:
for迴圈 (五) - 倒數300到150, 所有3的倍數
本帖最後由 tonyh 於 2011-12-14 14:12 編輯
倒數300到150, 所有3的倍數
#include<iostream>
using namespace std;
int main()
{
for(int i=300; i>=150; i-=3)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳詩凱
時間:
2011-12-7 13:41
#include<iostream>
using namespace std;
int main()
{
for(int i=300;i>=150;i-=3)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2011-12-7 13:46
#include<iostream>
using namespace std;
int main()
{
for(int i=300;i>=150;i-=3)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
作者:
林宥辰
時間:
2011-12-14 14:57
#include<iostream>
using namespace std;
int main()
{
for(int i=300;i>=150;i-=3)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2