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

(一)、九九乘法表

时间:2014-08-01 19:23:12      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   ar   div   log   table   

 1 package com.gen;
 2 
 3 public class Multi99table {
 4     public static void main(String args[]) {
 5         for (int i = 1; i <= 9; i++) {
 6             for (int j = 1; j <= i; j++) {
 7                 if (j <= i) {
 8                     System.out.print(j + "*" + i + "=" + j * i + "  ");
 9                 }
10             }
11             System.out.print("\n");
12         }
13     }
14 }

 

(一)、九九乘法表,布布扣,bubuko.com

(一)、九九乘法表

标签:style   blog   color   for   ar   div   log   table   

原文地址:http://www.cnblogs.com/fuyanan/p/3885423.html

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