1. 程式人生 > 其它 >java實現九九乘法表的列印

java實現九九乘法表的列印

技術標籤:java

java實現九九乘法表的列印

效果圖
在這裡插入圖片描述
實現程式

class ChengFaBiao{
	public static void main(String[] args){
		
		System.out.println("\t\t列印九九乘法表");
		for(int i = 1; i <10;i++){
			for(int j = 1; j <= i ;j++){
				System.out.print(j+"*"+i+"="+i*j+"\t");			
			}
			System.
out.println(); } } }