23344136钟姚佳


私信TA

用户名:dotcpp0693890

访问量:385

签 名:

偏爱都在1024

等  级
排  名 9837
经  验 1128
参赛次数 7
文章发表 3
年  龄 0
在职情况 学生
学  校 无锡学院
专  业

  自我简介:

TA的其他文章

函数+递归求解
浏览:18

解题思路:

注意事项:

参考代码:

#include<bits/stdc++.h>

using namespace std;

int sum=0;

int f(int x){

int t=x;//(保存一下x的值)

if(x>0){

int s=0;

while(x--){

s=s+2*pow(10,x);//表示10的n次方

}

sum=sum+s;

f(t-1);

}

else return sum;

}


int main(){

int n;

cin>>n;

cout<<f(n);

return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »