Create 1722.c

This commit is contained in:
KiritoTRw 2016-04-28 08:31:14 +08:00
parent ebbacd0e89
commit c5c5cf8da2

23
QUSTOJ/1722.c Normal file
View File

@ -0,0 +1,23 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char buff[32];
int main()
{
int a,b;
scanf("%d,%d",&a,&b);
int tmp;
int ans=0;
for(int i=1;i<=b;i++)
{
for(int j=1;j<=i;j++)
{
buff[j-1]='0'+a;
}
buff[i]=0;
sscanf(buff,"%d",&tmp);
ans+=tmp;
}
printf("a=%d,b=%d\n%d\n",a,b,ans);
return 0;
}