HZAU-JAVA技术群:7435949
学习Java从零开始-见证2006-Java之路
My Links
BlogJava
首页
新随笔
联系
聚合
管理
Blog Stats
Posts - 42
Stories - 0
Comments - 3
Trackbacks - 0
News
努力总是有希望的。
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔分类
(42)
Java(13)
(rss)
日志(29)
(rss)
随笔档案
(42)
2006年1月 (42)
搜索
积分与排名
积分 - 6713
排名 - 2787
最新评论
1. re: Test_java
dasfdsafds
--sd
2. re: import myjava.PlotOtau和import myjava.*的区别?
评论内容较长,点击标题查看
--Allen
3. re: import myjava.PlotOtau和import myjava.*的区别?
首先你要确认你的路径是完全正确的
--理想
阅读排行榜
1. import myjava.PlotOtau和import myjava.*的区别?(391)
2. ArrayPrint(259)
3. StringDemo(237)
4. 夜(220)
5. IntegerDemo(217)
6. ClassDemo(207)
7. 女孩子(206)
8. StringBufferDemo(201)
9. ComplexNumber(199)
10. CharacterDemo(196)
评论排行榜
1. import myjava.PlotOtau和import myjava.*的区别?(2)
2. Test_java(1)
3. IntegerDemo(0)
4. ClassDemo(0)
5. ComplexNumber(0)
DayShower
1
class
DayShower
2
{
3
public
static
void
main(String[] args)
4
{
5
int
yearIn
=
2004
;
6
int
monthIn
=
2
;
7
if
(args.length
>
0
)
8
{
9
monthIn
=
Integer.parseInt(args[
0
]);
10
}
11
if
(args.length
>
1
)
12
{
13
yearIn
=
Integer.parseInt(args[
1
]);
14
}
15
System.out.println(yearIn
+
"
Äê
"
+
monthIn
+
"
ÔÂÓÐ
"
+
countDays(monthIn,yearIn)
+
"
Ìì
"
);
16
}
17
static
int
countDays(
int
month,
int
year)
18
{
19
int
count
=-
1
;
20
switch
(month)
21
{
22
case
1
:
23
case
3
:
24
case
5
:
25
case
7
:
26
case
8
:
27
case
10
:
28
case
12
: count
=
21
;
break
;
29
case
4
:
30
case
6
:
31
case
9
:
32
case
11
: count
=
30
;
break
;
33
case
2
:
34
if
(year
%
4
==
0
)
35
{
36
count
=
29
;
37
}
38
else
39
{
40
count
=
28
;
41
}
42
if
((year
%
100
==
0
)
&
(year
%
400
!=
0
))
43
{
44
count
=
28
;
45
}
46
}
47
return
count;
48
}
49
}
posted on 2006-01-07 17:56
Allen
阅读(127)
评论(0)
编辑
收藏
所属分类:
Java
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
import myjava.PlotOtau和import myjava.*的区别?
ClassDemo
ComplexNumber
ArrayPrint
StringBufferDemo
StringDemo
CharacterDemo
CalendarDemo
MathDemo
DayShower