標題:
for 迴圈 (五)
[打印本頁]
作者:
王瑞喻
時間:
2020-7-31 15:06
標題:
for 迴圈 (五)
利用 for 迴圈, 計算 1 加到 100.
作者:
陳柏恩
時間:
2020-7-31 15:29
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int s=0;
for (int i=0; i<=100; i++)
{
s=s+i;
}
cout<<"1加到100= "<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭軒濬
時間:
2020-7-31 15:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0;
for(int i=0; i<=100; i++)
{
a=a+i;
}
cout<<"1加到100="<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
樂柏謙
時間:
2020-7-31 15:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=0;
for(int i=1;i<=100; i++)
{
x=x+i;
}
cout<<"1加到100="<<x<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱玟瑜
時間:
2020-7-31 15:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int sum=0;
for(int i=1; i<=100; i++){
sum=sum+i;
}
cout<<"1+2+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周秉融
時間:
2020-7-31 15:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=0; i<=100; i++)
{
sum=sum+i;
}
cout<<"1+2+3+...+100="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林秉軒
時間:
2020-7-31 15:44
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int s=0;
for (int i=0; i<=100; i++)
{
s=s+i;
}
cout<<"1加到100= "<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何郡毓
時間:
2020-7-31 15:45
本帖最後由 何郡毓 於 2020-7-31 15:51 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s=0;
for(int i=0; i<=100; i=i++)
{
s=s+i;//1+2+...+100
}
cout<<"1+2+...+100="<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王晏璿
時間:
2020-7-31 15:46
本帖最後由 王晏璿 於 2020-7-31 15:52 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
{
sum=sum+i;
}
cout<<"1+2+3+4+...+99+100= "<<sum<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2