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