题目简单,注意输出格式即可。
#include<stdio.h> int main() { int i=1,N; scanf("%d",&N); while (i<=10) { printf("%d x %d = %d\n",i,N,i*N); i=i+1; } return 0; }