摘要: /** * 时钟 * */public class Clock { private int hour; private int minute; private int second; public Clock() { Calendar cal = Calendar.getInstance(); ... 阅读全文
posted @ 2014-10-20 19:48 SUPER-YueYue 阅读(93) 评论(0) 推荐(0) 编辑
摘要: public class CrapsGame { public static int roll() { return (int) (Math.random() * 6 + 1); } public static void main(String[] args) { Scanner sc = ne... 阅读全文
posted @ 2014-10-20 19:05 SUPER-YueYue 阅读(226) 评论(0) 推荐(0) 编辑