求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。
- int n,a,sum=0,tmp=0;
-
- printf("please input the number and the quantity\n");
-
- scanf("%d%*c%d",&a,&n);
-
- for(int i=0;i<n;i++){
- tmp+=pow(10,i)*a;
- sum+=tmp;
- }
- printf("the sum is %d\n",sum);
复制代码
|
|