clear all;close all;clc disp('乘法口诀表') for i=1:9 for j=1:i fprintf('%d*%d=%2d ',j,i,j*i); end disp(' '); end