代码实现:在控制台输出九九乘法表。

/*
* A:案例演示
	* 需求:在控制台输出九九乘法表。

1 * 1 = 1
1 * 2 = 2 2 * 2 = 4
1 * 3 = 3 2 * 3 = 6 3 * 3 = 9
...

*
**
***
*/
class Demo_For99 {
	public static void main(String[] args) {
		/*for (int i = 1;i <= 9 ;i++ ) {					//行数
			for (int j = 1;j <= i ;j++ ) {				//列数
				System.out.print(j + "*" + i + "=" + (i * j) + "\t" );
			}
			System.out.println();
		}*/

		//System.out.println("\"");				转义双引号
		System.out.println('\'');				//转义单引号
	}
}

 

posted on 2017-03-09 19:13  LoaderMan  阅读(1032)  评论(0编辑  收藏  举报

导航