从键盘上任意输入两位正整数,编程求出个位与十位的乘积且打印输出。 #include"stdio.h"void main(){ int num; printf("please input the num:\n"); scanf("%d",&num); printf("the result is :%d\n",(num%10)*(num/10));} c语言 2023-08-24 49 点赞 0 评论 74 浏览