编写一个类,该类创建的对象可以计算等差数列的和

 我来答
匿名用户
2014-01-01
展开全部
//等差数列只要有首项和公差就行了.#include <iostream>
using namespace std;class CNumbers
{
public:
CNumbers(int a1=0,int d=0);
int Sum(int n);
private:
int m_a1;//首项
int m_d;//公差
};
CNumbers::CNumbers(int a1/* =0 */,int d/* =0 */)
{
m_a1 = a1;
m_d = d;
}
int CNumbers::Sum(int n)
{
int an = m_a1 + (n-1)*m_d;
return (m_a1+an)*n/2;
}
void main()
{
CNumbers a(1,1);
cout<<a.Sum(100)<<endl;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
赫力封亦玉
2019-05-11 · TA获得超过3623个赞
知道大有可为答主
回答量:3027
采纳率:24%
帮助的人:174万
展开全部
class
calculate
{
private
int
t,s;
public
void
calculate()
{
s=0;
}
/*
参数:数列开始,最后一位,增量
返回:int
*/
public
int
total(int
first,int
last,int
increment)//increment为数列增量
{
if(
((last
-
first)
/
increment)
%
1
==0
)
//数列为等差时
{
for(int
j=0;j<(last
-
first)
/
increment
+
1;j++)
{
t
=
j*increment
+
first;
s
=
s
+
t;
}
}
return
s;
}
}
//测试
class
test4
{
public
static
void
main(String
args[])
{
calculate
c
=
new
calculate();//这里创建一个对象
System.out.println(c.total(1,9,4));
//这里调用C对象的total方法
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式