写在最前面:本答案为作者和朋友讨论得出,请在没有思路时作为参考启发,不要直接抄袭
#include<stdio.h>
int main()
{
signed int a,b,c;
scanf("%d %d",&a,&b);
c=a*b;
printf("%d",c);
return 0;
}
这个没什么难度吧,学过一点都会做,不过多解释了。
写在最前面:本答案为作者和朋友讨论得出,请在没有思路时作为参考启发,不要直接抄袭
#include<stdio.h>
int main()
{
signed int a,b,c;
scanf("%d %d",&a,&b);
c=a*b;
printf("%d",c);
return 0;
}
这个没什么难度吧,学过一点都会做,不过多解释了。