2016年10月30日
摘要: package com.chigoe;//房子类class House { private int m;// 保存行数 private int n;// 保存列数 private int[][] a; public House() { // 无参构造方法 m = 10; n = 10; for (i 阅读全文
posted @ 2016-10-30 18:35 Heavy_dream 阅读(361) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Calendar { public static void main(String[] args) { // 万年历 int year;// 保存输入的年 int month;// 保存输入的月 System.out.pr 阅读全文
posted @ 2016-10-30 16:03 Heavy_dream 阅读(278) 评论(0) 推荐(0) 编辑