会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
芊鸟咔咔
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
2017年3月29日
Calendar(显示日期)
摘要: java.util.Calendar 类是一个抽象类,可以通过调用 getInstance() 静态方法获取一个 Calendar 对象,此对象已由当前日期时间初始化,即默认代表当前时间,如 Calendar c = Calendar.getInstance(); 使用 Calendar 获取年、月
阅读全文
posted @ 2017-03-29 20:46 芊鸟咔咔
阅读(431)
评论(0)
推荐(0)
2017年3月5日
Debug Current Instruction Pointer
摘要: 关于eclipse的Debug Current Instruction Pointer
阅读全文
posted @ 2017-03-05 21:55 芊鸟咔咔
阅读(2163)
评论(0)
推荐(0)
LeetCode(Roman to Integer)
摘要: 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 芊鸟咔咔
阅读(172)
评论(0)
推荐(0)
2017年2月25日
图书系统
摘要: 一个简易的图书管理系统
阅读全文
posted @ 2017-02-25 13:46 芊鸟咔咔
阅读(193)
评论(0)
推荐(0)
租车系统
摘要: 一个简易的租车系统
阅读全文
posted @ 2017-02-25 13:42 芊鸟咔咔
阅读(294)
评论(0)
推荐(0)
Reverse Integer(反向整数)
摘要: 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 芊鸟咔咔
阅读(132)
评论(0)
推荐(0)
Palindrome Number(回文)
摘要: https://leetcode.com/problems/palindrome-number/?tab=Description
阅读全文
posted @ 2017-02-25 12:38 芊鸟咔咔
阅读(169)
评论(0)
推荐(0)
上一页
1
2
公告