Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区 » 实战错误讨论  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 Re:遇到解决不了的问题了 [Re:841221]
312321763





发贴: 1
积分: 0
于 2009-03-25 10:43 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
for (int j=1;j<10;j++){ // j 循环
for (int i=1;i<=j;i++) // i 循环
a[k]=i*j; //a的数组循环储存结果。
System.out.print("乘法口决表是:"+a[k]);
}
}
你数组最大下标设置为9 那就是他只能储存9个最后的值:
而且口诀是String 不是int
如果非要是数组储存的话可以参考以下代码:
public class as {

public static void main(String[] args) {
String[] a= new String[81];
  int k=0;
  System.out.println("乘法表是:");
  for (int i = 1; i <= 9; i++) {
   for (int n = 1; n <= i; n++) {
    if(k<81){
    a[k]=""+n+ " x " + i + " = " + i * n + "\t ";
    }
    System.out.print(a[k]);
    k++;
    }
    System.out.println();
    }
  }
}




从Coding Fan到真正的技术专家

话题树型展开
人气 标题 作者 字数 发贴时间
16899 遇到解决不了的问题了 841221 278 2009-03-22 16:04
14176 Re:遇到解决不了的问题了 cxp108 202 2009-03-23 09:38
14166 Re:遇到解决不了的问题了 cxp108 26 2009-03-24 10:18
14231 Re:遇到解决不了的问题了 841221 35 2009-03-23 16:36
14165 Re:遇到解决不了的问题了 312321763 604 2009-03-25 10:43
14140 Re:遇到解决不了的问题了 841221 4 2009-03-27 10:23
14253 Re:遇到解决不了的问题了 sdwawa 236 2009-03-27 15:57
14230 Re:遇到解决不了的问题了 sdwawa 236 2009-03-27 15:59
13764 Re:遇到解决不了的问题了 xiaowenhuman 312 2009-04-11 20:09
13686 Re:遇到解决不了的问题了 吾夲 161 2009-04-12 11:56
13907 Re:遇到解决不了的问题了 yanglijuanylj 29 2009-04-22 14:50
13850 Re:遇到解决不了的问题了 qq1646 241 2009-08-14 15:38

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923