標題:
[隨堂測驗] 計算333~999間所有3的倍數總和
[打印本頁]
作者:
tonyh
時間:
2013-10-26 16:57
標題:
[隨堂測驗] 計算333~999間所有3的倍數總和
333+336+339+...+996+999=?
作者:
施伯叡
時間:
2013-10-26 17:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int total = 0;
for (int i=333 ; i <= 999 ; i= i+3 )
total = total + i;
{
cout << "333+336+339+...+996+999=" << total << endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-10-26 17:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total = 0;
for(int i = 333; i <= 999 ; i =i + 3)
{
total=total+i;
}
cout << "333+336+...+996+999=" << total <<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-10-26 17:06
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int total = 0;
for (int i=333; i<= 999; i=i+3)
total = total + i;
cout << "333+336+339+...+996+999=" << total << endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-10-26 17:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int j=0;
for(int i=333;i<=999;i+=3)
{
j=j+i ;
}
cout<<"333+336+339+...+996+999="<< j <<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-10-26 17:09
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int total=0;
for (int i=333; i<=999; i=i+3 )
{
total=total+i;
}
cout<<"333+336+339+....+996+999="<<total<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-10-26 17:10
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int total=0;
for(int i=333;i<=999;i+=3)
total=total+i;
cout<<"333+336+339...999="<<total<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-10-26 17:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=333;i<=999; i+=3)
{
sum=sum+i;
}
cout<<"333~999的3的倍數的總和為: "<<sum<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2