可控乘法表 输入几,就输出几几乘法表,如输入9输出9x9乘法表;输入12,输出12x12乘法表 #include<stdio.h> void mul(int i) { for (i = 1; i < 10; i++) {