不知道你想要什么软件的程序,给你写一个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;
}
望采纳!
应该等于1*20+2*19+3*18+.....+20*1