使用函数求特殊a串数列和

题目

https://pintia.cn/problem-sets/12/problems/309
给定两个均不超过9的正整数an,要求编写函数求a+aa+aaa+⋯+aaana)之和。

程序样例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>

int fn( int a, int n );
int SumA( int a, int n );

int main()
{
int a, n;

scanf("%d %d", &a, &n);
printf("fn(%d, %d) = %d\n", a, n, fn(a,n));
printf("s = %d\n", SumA(a,n));

return 0;
}

/* 你的代码将被嵌在这里 */

关键代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
int fn( int a, int n ){
int num =0;
for(int i=0;i<n;i++){
num = num*10+a;
}
return num;
}
int SumA( int a, int n ){
int res=0;
for(int i = 1;i<=n;i++){
res += fn(a,i);
}
return res;
}