题解 | #特殊乘法#
特殊乘法
http://www.nowcoder.com/practice/a5edebf0622045468436c74c3a34240f
// 判断大于10
#include <stdio.h>
int main() {
char a[20], b[20];
int res=0;
while (scanf("%s %s", a, b) != EOF) { // 注意 while 处理多个 case
for(int i=0;i<strlen(a);i++){
for(int j=0;j<strlen(b);j++){
res+=(a[i]-'0')*(b[j]-'0');
}
}
printf("%d",res);
}
return 0;
}