九九乘法表
public class MultiTable
{
public static void main(String[] args)
{
for(int i= 1;i<=9;i++){
for(int j=1;j<=i;j++)
System.out.println(" "+i+"*"+j+"="+i*j);
System.out.println( );
}
}
}
posted on 2017-03-20 22:28 allhaillelouch 阅读(133) 评论(0) 收藏 举报
浙公网安备 33010602011771号