[ZJ]a149: 乘乘樂

題目:
http://zerojudge.tw/ShowProblem?problemid=a149
----------------------------------------------------------------------------------------------------------

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define N 100
int main()
{
int n,T;
char x2[N]={' '};
int x[N]={0};
scanf("%d",&T);
while(scanf("%s",&x2)!=EOF)
{
n=strlen(x2);
for(int i=0;i<n;i++)
x[i]=x2[i]-48;
long long int ans=1;
for(int i=0;i<n;i++)
{
ans*=x[i];
}
printf("%lld\n",ans);
}
return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯