0
已解决
程祺然
初级光能
初级光能
0
已采纳
沈峻宇
资深天翼
资深天翼
for循环i=0,i<a;i++
pow(x,y);//x为要乘方的数,y为xx次方
输出<<b+pow(...)
沈峻宇在2020-06-07 11:01:40追加了内容
望采纳
0
李帅霖
修练者
修练者
- #include<iostream>
- #include<cstdio>
- #include<cmath>
- #include<string>
- using namespace std;
- int main(){
- int n;
- long long sum=0;
- cin>>n;
- for(int i=1;i<=n;i++){
- long long e=pow(i,i);
- sum+=e;
- }
- cout<<sum;
- return 0;
- }
0
0
0
0
0
0