我是想输入一个数字让它与1~~10相乘 可是不会出现答案请问这是怎么会是呀 那位大哥帮帮我呀
#include <stdio.h>main(){ int a,i; scanf("%d",&a); for(i=1;i<=10;i++) printf("%d*%d=%d\n",a,i,a*i);}