1楼
#include<iostream>
using namespace std;
int main(){
cin>>n;
int sum=1,h=1;
for(int i=1,i<=n,i++){
h=h*i;
sum=sum+h;}
cout<<sum<<endl;
}
using namespace std;
int main(){
cin>>n;
int sum=1,h=1;
for(int i=1,i<=n,i++){
h=h*i;
sum=sum+h;}
cout<<sum<<endl;
}
2楼
Read n
S←1
T←0
For I from 1 to n step 1
For J from 1 to I step 1
S←S*I
J←J+1
End for
T←T+S
I←I+1
End for
Print T
S←1
T←0
For I from 1 to n step 1
For J from 1 to I step 1
S←S*I
J←J+1
End for
T←T+S
I←I+1
End for
Print T
3楼
这是高一的数学题吗,怎么要编程啊?
4楼
这个题在高中课本的封面上就有答案的
5楼
书本公式背下就行..
7楼
这些基本公式还是去多看看吧,中学的公式不多,你去把它们都列出来,时不时看几眼,不用多久就能全部都记下来了
共有回复7篇 1