编程计算T=1+(1+2)+(1+2+3)+(1+2+3+4)+……+(1+2+3+4+…+20)

2024-12-17 20:38:58
推荐回答(2个)
回答1:

不知道你想要什么软件的程序,给你写一个MATLAB的和一个C++的吧。
MATLAB程序:
s=0;
for i=1:20
for j=1:i
s=s+j;
end
end
disp(s);

C++程序(我用的是VS2010):
#include "iostream"
using namespace std;
int main()
{
int s=0,i,j;
for(i=1;i<=20;++i)
for(j=1;j<=i;++j)
s=s+j;
cout<<"The answer is : "< system("pause");
return 1;
}
望采纳!

回答2:

应该等于1*20+2*19+3*18+.....+20*1