代码实现:在控制台输出九九乘法表。
/* * 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) 编辑 收藏 举报