码迷,mamicode.com
首页 > 其他好文 > 详细

九九乘法表

时间:2018-07-03 21:32:46      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:pack   size   out   乘法表   str   \n   九九乘法表   system   table   

package cn.cn;

public class MulTable {

/**
* @param args
*/
public static void main(String[] args) {
int rows=9; //乘法表的横数
for(int i=1;i<=rows;i++){ //一共有9行
for(int j=1;j<=i;j++){ //第i行有i个式子
System.out.print(j+"*"+i+"="+j*i+" ");//第j个式子
}
System.out.print("\n");//打印完一行换行
}

}

}


 

九九乘法表

标签:pack   size   out   乘法表   str   \n   九九乘法表   system   table   

原文地址:https://www.cnblogs.com/BingBing-Deng/p/9260587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!