標題:
[隋棠測驗] 33~66 所有3的倍數總和
[打印本頁]
作者:
tonyh
時間:
2013-12-14 17:00
標題:
[隋棠測驗] 33~66 所有3的倍數總和
33+36+39+...+63+66=?
作者:
施伯叡
時間:
2013-12-14 17:04
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int total = 0;
for (int i=33 ; i<=66 ; i= i+3 )
total = total + i;
{
cout << "33+36+39+...+66= " << total << endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-12-14 17:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int j=0;
for(int i=33;i<=66;i+=3)
{
j=j+i ;
}
cout<<"33+36+39+...+63+66="<< j <<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-12-14 17:07
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int total=0;
for (int i=33;i<=66;i=i+3)
total=total+i;
cout<<"33~66 所有3的倍數總和等於"<<total<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-12-14 17:08
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int total=0;
for(int i=33; i<=66; i+=3)
{
total=total+i;
}
cout<<"33~66的倍數總和:"<<total<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-12-14 17:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ int total=0;
for( int i=33;i<=66;i+=3)
{
total=total+i;
}
cout<<"33~66's double total is:"<<total<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-12-14 17:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int total =0;
for (int i=33;i<=66;i=i+3)
{
total=total+i;
}
cout<<total<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2