比赛 |
普及水题赛(语言题赛) |
评测结果 |
AAAAAAAAAA |
题目名称 |
奶牛式乘法 |
最终得分 |
100 |
用户昵称 |
Fmuckss |
运行时间 |
0.002 s |
代码语言 |
C++ |
内存使用 |
0.26 MiB |
提交时间 |
2014-10-16 17:50:36 |
显示代码纯文本
#include<stdio.h>
#include<string.h>
char a[200]={0},b[200]={0};
int a2[200]={0},b2[200]={0};
int main()
{
freopen("cowmult.in","r",stdin);
freopen("cowmult.out","w",stdout);
int i,n,a1,b1,tot=0;
scanf("%s %s",a,b);
a1=strlen(a);
b1=strlen(b);
for(i=0;i<=a1-1;i++)
{
a2[i]=a[i]-48;
for(n=0;n<=b1-1;n++)
{
b2[n]=b[n]-48;
tot=tot+(a2[i]*b2[n]);
}
}
printf("%d",tot);
return 0;
}