摘要: 要求:控制台输出如下图(注意列对齐)Java代码:public class Test { public static void main(String[] args) { for(int i = 1;i<10;i++){ for(int j = 1;j<=i;j++){ System.out.print(j+"*"+i+"="+j*i+"\t"); } System.out.println(); } }} 阅读全文
posted @ 2014-04-04 19:35 achst 阅读(195) 评论(0) 推荐(0) 编辑