特殊a串数列求和
在dev c++里正确但在pta上显示答案错误
#include<stdio.h>
#include<math.h>
int main()
{
int a,n;
scanf("%d %d",&a,&n);
double s;
int t=0;
for(int i=0;i<n;i++)
{
t=pow(10,i)*a+t;
s+=t;
}
printf("s = %0f",s);
}
最后一句
printf("s = %0f",s);
百分号后面加个小数点
printf("s = %.0f",s);