习题6-2 使用函数求特殊a串数列和(20 分)
给定两个均不超过9的正整数a和n,要求编写函数求$a+aa+aaa++⋯+aa⋯a$(n个a)之和。
函数接口定义:
1 | int fn( int a, int n ); |
其中函数fn
须返回的是n
个a
组成的数字;SumA
返回要求的和。
裁判测试程序样例:
1 | #include <stdio.h> |
输入样例:
1 | 2 3 |
输出样例:
1 | fn(2, 3) = 222 |
1 | #include <stdio.h> |
给定两个均不超过9的正整数a和n,要求编写函数求$a+aa+aaa++⋯+aa⋯a$(n个a)之和。
1 | int fn( int a, int n ); |
其中函数fn
须返回的是n
个a
组成的数字;SumA
返回要求的和。
1 | #include <stdio.h> |
1 | 2 3 |
1 | fn(2, 3) = 222 |
1 | #include <stdio.h> |
Update your browser to view this website correctly. Update my browser now