A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

请把9*9乘法表打出来,可以顺着、倒着、怎么好玩怎么搞。。。下面是我写的俩
  1. class ChenFaBiao {
  2.         public static void main(String[] args) {
  3.                 //形式一
  4.                 /*for (int x=9;x>=1 ;x-- ) {
  5.                         for (int y=1;y<=x ;y++ ) {
  6.                                 System.out.print(y+"*"+x+"="+y*x+"\t");
  7.                         }
  8.                         System.out.println();
  9.                 }*/
  10.                 //形式二
  11.                 for (int x=9;x>=1 ;x-- ) {
  12.                         for (int n=8;n>=x ;n-- ) {
  13.                                 System.out.print(" "+" "+" "+" "+" "+"\t");
  14.                         }
  15.                         for (int y=x;y>=1 ;y-- ) {
  16.                                 System.out.print(y+"*"+x+"="+y*x+"\t");
  17.                         }
  18.                         System.out.println();
  19.                 }
  20.         }
  21. }
复制代码

2 个回复

倒序浏览
牛B,活到老学到老
回复 使用道具 举报
赞赞赞................
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马