matlab编程实现九九乘法表

 

for i=1:9for j=1:ic=[int2str(i),'*',int2str(j),'='];fprintf(c)fprintf('%d ',i*j)endfprintf('\n');   
end