⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testmultable.java

📁 哈工大实验课源代码
💻 JAVA
字号:
//TestmulTable.java:Display a multiiplication table
public class	TestMulTable{
	//Main method
	public static void main(String[] arguments){
		//Display the table heading
		System.out.println("	Multiplication Table");
		System.out.println("------------------------");

		//Display the number title
		System.out.println(" |");
		for(int j=1;j<=9;j++)
			System.out.println(" "+j);
			System.out.println("");

		//Print table body
		for (int i=1;i<=9;i++ ){
			System.out.println(i+"|");
			for(int j=1;j<=9;j++){
				//Display the product and align properly
				if(i*j<10)
					System.out.print("	"+ i*j);
				else
					System.out.print("	" +i*j);
			}
			System.out.println();
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -