java实现打印乘法口诀表

public class Holiday0710{
	public static void main(String[] args){
		for(int i=1;i<10;i++){
			for(int y=1;y<=i;y++){
				System.out.print(i+"*"+y+"="+i*y+"\t");
			}
			System.out.println();
		}
	}
}   

     主要的是使用了字符串连接符使 * 、= 、及i*y的值,很好的连接打印出来。

 

你可能感兴趣的:(java实现打印乘法口诀表)