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

java 二维数组 99乘法表

时间:2015-10-05 16:43:26      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

 public static void main(String[] args) {
  String [][] yh=new String[9][];
  for(short i=0;i<yh.length;i++){
   yh[i]=new String[i+1];
   for (int j = 0; j < yh[i].length; j++) {
    yh[i][j]=(i+1)+"*"+(j+1)+"="+(i+1)*(j+1);
   }
  }     
  for (int i = 0; i < yh.length; i++) {
   for (int j = 0; j < yh[i].length; j++) {
    System.out.print(yh[i][j]+"\t");
   }
   System.out.println();
  }
 }

java 二维数组 99乘法表

标签:

原文地址:http://www.cnblogs.com/pascal-poincare/p/4855786.html

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