- 题目
- 思路
- 把乘积从低位往高位存到数组中,输出即可
- 容易踩坑的点:初始乘积末尾的连续的0要去掉,不然会出错,比如110*20应该输出22而不是0022
#include <stdio.h>
int main(){
int a,b;
scanf("%d %d",&a,&b);
int mul=a*b;
int ans[10]={0},cnt=0;
while(mul%10==0){
mul/=10;
}
do{
ans[cnt++]=mul%10;
mul/=10;
}while(mul);
for(int i=0;i<cnt;i++){
printf("%d",ans[i]);
}
return 0;
}