九九乘法表

来源:互联网 发布:h5棋牌源码定制 编辑:程序博客网 时间:2024/06/05 07:51
package test2;public class 九九乘法表 { public static void main(String[] args) {  // TODO Auto-generated method stub    for(int i=1;i<10;i++){   for(int j=1;j<=i;j++){    int x=i*j;    System.out.print(+i+"*"+j+"="+x+"\t");//输出   }   System.out.println();  }            }}

0 0