摘要: class jiujiu { //打印99乘法表 public static void main(String[] args) { for(int x=1;x<=9;x++) { for(int y=1;y<=x;y++) { System.out.prin... 阅读全文
posted @ 2016-06-02 16:10 月夜迷思 阅读(278) 评论(0) 推荐(0)