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

2.打印99乘法表

时间:2018-01-03 00:50:42      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:class   auto   log   ati   str   stat   generate   for   rate   

public class DbFor_ChengFa_09 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		for(int i=1;i<=9;i++){
			for(int j=1;j<i+1;j++){
				System.out.print(j+"*"+i+"="+j*i+" ");
			}
			System.out.println();
		}
	}

}

  

2.打印99乘法表

标签:class   auto   log   ati   str   stat   generate   for   rate   

原文地址:https://www.cnblogs.com/syj1993/p/8179854.html

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