回复 9# 的帖子
我也不懂呀
#include "stdio.h"
void main()
{
int a,n,tem=0,count=1,p=0;
scanf("%d,%d",&a,&n);
while(count<=n)
{
tem=tem+a;
a=a*10;
p=p+tem;
++count;
}
printf("%d\n",p);
}