第七十九题:从键盘上任意输入两位正整数,编程求出个位与十位的乘积且打印输出。 #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)); }