码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA打印乘法口诀表

时间:2018-12-11 19:51:53      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:++   打印   i++   乘法口诀   color   out   for   auth   ring   

 1 /**
 2  *这是一个打印乘法9*9的例子
 3  * @author 25689
 4  *
 5  */
 6 public class Chenfa {
 7     public static void main(String[] arg) {
 8         for(int i=1;i<10;i++) {
 9             for(int j=1;j<=i;j++) {
10                 System.out.print(j + "*" + i + "=" + i*j + "\t");
11             }    
12             System.out.println();
13         }
14     }
15 }

 

JAVA打印乘法口诀表

标签:++   打印   i++   乘法口诀   color   out   for   auth   ring   

原文地址:https://www.cnblogs.com/HufeYao/p/10104198.html

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