java--九九乘法打印

package test_1027;

import java.util.Scanner;

public class test {

public static void main(String[] args) {
	// TODO Auto-generated method stub
	//System.out.println("a");
	for(int a=1 ;a<=9; a++) {
		for(int i=1 ;i<=a; i++) {
			System.out.print(a +"*"+ i + "=" +(a * i) +"  ");
		}
		System.out.println();
	}
	
}

}

******************************人因为有理想、梦想而变得伟大,而真正伟大就是不断努力实现理想、梦想*****************************
原文地址:https://www.cnblogs.com/cloudLi/p/13885198.html