Toggle navigation
编绘童年
F.A.Qs
ProblemSet
Source/Category
Status
Ranklist
Contest
Login
Problem2254--函数-数值计算练习
2254: 函数-数值计算练习
Time Limit:
1
Sec
Memory Limit:
128 MB
Submit:
284
Solved:
202
[
Status
] [
Submit
] [Creator:
]
Description
1.先创建
函数
int f(int a,int x)的返回值为x个a合并在一起的值,例如f(6,2)的值为66,
f(6,3)的值为666;
2.输入2个正整数a和n
求a+aa+aaa+...+aa...a(n个a之合并在一起的值)。例如,输入2和3,则计算2+22+222,输出246。
Input
输入为2个数,分别是a(1<=a<=9)和n(1<=n<=9)。
Output
仅一个数,为相加的结果。
Sample Input
Copy
2 3
Sample Output
Copy
246
Source/Category
提高C