摘要: java.util.Calendar 类是一个抽象类,可以通过调用 getInstance() 静态方法获取一个 Calendar 对象,此对象已由当前日期时间初始化,即默认代表当前时间,如 Calendar c = Calendar.getInstance(); 使用 Calendar 获取年、月 阅读全文
posted @ 2017-03-29 20:46 芊鸟咔咔 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 关于eclipse的Debug Current Instruction Pointer 阅读全文
posted @ 2017-03-05 21:55 芊鸟咔咔 阅读(2021) 评论(0) 推荐(0) 编辑
摘要: Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. I = 1;V = 5;X = 10;L = 50;C = 100;D = 500; 阅读全文
posted @ 2017-03-05 21:47 芊鸟咔咔 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 一个简易的图书管理系统 阅读全文
posted @ 2017-02-25 13:46 芊鸟咔咔 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 一个简易的租车系统 阅读全文
posted @ 2017-02-25 13:42 芊鸟咔咔 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 1 public class Solution { 2 public int reverse(int x) { 3 int tmp; 4 int result=0; 5 int res=0; 6 if(x==0) 7 result=0; 8 else{ 9 ... 阅读全文
posted @ 2017-02-25 12:59 芊鸟咔咔 阅读(125) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/palindrome-number/?tab=Description 阅读全文
posted @ 2017-02-25 12:38 芊鸟咔咔 阅读(159) 评论(0) 推荐(0) 编辑