码迷,mamicode.com
首页 > 其他好文 > 详细

C-1 九九乘法表

时间:2015-08-19 16:12:17      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

 1 /*
 2 九九乘法表
 3 
 4 注意:转义字符:‘\x‘ x表示任意。
 5                 \t tab键
 6                 \r 回车
 7                 \n 换行
 8 
 9 */
10 class ForForDemo{
11     public static void main(String[] args){
12         for(int x=1; x<=9; x++){
13             for(int y=1; y<=x; y++){
14                 System.out.print(y+"*"+x+"="+y*x+"\t"); 
15             }
16             System.out.println();
17         }
18     }
19 }

 

C-1 九九乘法表

标签:

原文地址:http://www.cnblogs.com/android-lyz/p/4742491.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!