標題:
[作業] for 迴圈 (一)
[打印本頁]
作者:
tonyh
時間:
2016-10-15 15:24
標題:
[作業] for 迴圈 (一)
本帖最後由 tonyh 於 2016-10-22 13:58 編輯
利用for迴圈, 在畫面上直列顯示1~10.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//初始值 終止值 遞增或遞減的條件
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳晉榕
時間:
2016-10-15 16:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ //初始值 終止值 遞增或遞減的條件
for(int i=1; i<=10; i++) //i=i+1 i+=1
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2016-10-15 21:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-10-17 17:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2016-10-20 20:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾彥翔
時間:
2016-10-21 20:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱聿謙
時間:
2016-10-22 08:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭澧邦
時間:
2016-10-22 12:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榜蔓
時間:
2016-10-27 17:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2016-10-29 14:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
sum+=i;
cout<<"1+2+3......+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2