標題:
迴圈計算總合
[打印本頁]
作者:
tonyh
時間:
2016-2-3 15:57
標題:
迴圈計算總合
本帖最後由 tonyh 於 2016-7-14 16:06 編輯
試利用for迴圈, 計算1~100所有整數的總和.
[attach]1669[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1;i<=100;i++)
{
sum+=i; //sum=sum+i
}
cout<<"1~100所有數字的總和為: "<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
方宥鈞
時間:
2016-2-3 16:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1;i<=100;i++)
{
sum+=i; //sum=sum+i
}
cout<<"1~100所有數字的總和為: "<<sum<<endl;
system("pause");
return 0;
}
[/code]
作者:
方宥鈞
時間:
2016-2-3 16:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1;i<=100;i++)
{
sum+=i; //sum=sum+i
}
cout<<"1~100所有數字的總和為: "<<sum<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
tonyh
作者:
孫石青
時間:
2016-2-3 16:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ int sum=0;
for(int i=1 ; i<=100;i++)
{
sum+=i;
}
cout<<"數字的總合為:"<<sum<<endl;
system("pause");
return 0;
}
作者:
謝以愛
時間:
2016-2-3 16:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1;i<=100;i++)
{
sum+=i;
}
cout<<"1~100所有數字的總和為: "<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-2-3 16:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int y=0;
for(int x=1;x<=100;x=x+1)
{
y+=x;
}
cout<<"THE ANSEWER IS:"<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓廷
時間:
2016-2-3 16:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1;i<=100;i++)
{
sum+=i; //sum=sum+i
}
cout<<"1~100所有數字的總和為: "<<sum<<endl;
system("pause");
return 0;
}
作者:
吳建錡
時間:
2016-2-3 16:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ int sum=0;
for(int i=1; i<=100; i=i+1)
sum+=i;
cout<<"1~100所有數字的總合為:"<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林昱岑
時間:
2016-2-3 16:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=1; i<=100; i++)
{
sum+=i;
}
cout<<"1~100所有數字的總和為:"<<sum<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2