標題:
1到指定數值的總和運算
[打印本頁]
作者:
游東祥
時間:
2013-9-28 18:02
標題:
1到指定數值的總和運算
1到指定數值的總和運算
作者:
施伯叡
時間:
2013-9-28 18:05
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int total = 0;
int max;
cout << "輸入最大值:" ;
cin >> max ;
for (int i = 1 ; i <= max ; i++)
{
total = total + i ;
}
cout << "1~" << max << "的總和=" << total << endl;
system ("pause");
return 0;
}
複製代碼
作者:
李彥彤
時間:
2013-9-28 18:05
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int total = 0;
int max ;
cout << "輸入最大值:" ;
cin >> max ;
for(int a = 1; a <= max; a++)
{
total = total + a;
}
cout << "1~" << max << "100總和等於:" << total << endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-9-28 18:06
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int total = 0;
int max;
cout<<"輸入最大值:";
cin>> max;
for(int i = 1; i <= max; i++)
{
total = total + i;
}
cout<< "1~" << max << "的總和等於" << total <<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-9-28 18:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int total = 0;
int max;
cout<<"輸入最大值:";
cin>>max;
for (int i = 1; i <= max; i++)
{
total = total + i;
}
cout << "1~"<<max<<"的總和等於:" << total << endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-9-28 18:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{ int total = 0;
int max;
cout << "請輸入最大值:";
cin >> max;
for( int i = 1; i <= max; i++ )
{
total = total + i;
}
cout << "1~" << max << "的總和等於:" << total << endl;
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-9-28 18:09
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int total = 0;
int max ;
cout << "請輸入最大值:" ;
cin >> max ;
for (int i = 1; i <= max; i++)
{
total = total + i;
}
cout << "1~"<< max <<"總和等於" << total << endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-9-28 18:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total = 0 ;
int max;
cout << "輸入最大值:" << endl;
cin>>max;
for(int i = 1; i <= max; i++)
{
total = total+i ;
}
cout << "1~" << max << "的總和:" << total << endl;
system ("pause");
return 0;
}
複製代碼
作者:
謝佩君
時間:
2013-9-28 18:16
提示:
作者被禁止或刪除 內容自動屏蔽
作者:
謝典育
時間:
2013-9-28 18:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total = 0;
int max;
cout << "請輸入最大值:";
cin >> max;
for (int i = 1; i <= max; i++)
{
total = total + i;
}
cout << " 1~ " << max << "的運算總和:"<< total <<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2