min-water
如果一个人不知道他要驶向哪个码头,那么任何风都不会是顺风。
BlogJava
首页
新随笔
联系
聚合
管理
posts - 17, comments - 14, trackbacks - 0
student
package
gov.school.student;
public
class
Student
{
private
int
stuno;
private
String name;
private
String sex;
private
int
age;
private
int
score;
public
int
getStuno()
{
return
stuno;
}
public
void
setStuno(
int
stuno)
{
this
.stuno
=
stuno;
}
public
String getName()
{
return
name;
}
public
void
setName(String name)
{
this
.name
=
name;
}
public
String getSex()
{
return
sex;
}
public
void
setSex(String sex)
{
this
.sex
=
sex;
}
public
int
getAge()
{
return
age;
}
public
void
setAge(
int
age)
{
this
.age
=
age;
}
public
int
getScore()
{
return
score;
}
public
void
setScore(
int
score)
{
this
.score
=
score;
}
}
package
gov.school.student;
public
class
StudentServer
{
public
static
Student[] getStudent()
{
Student[] student
=
new
Student[
5
];
Student st0
=
new
Student();
st0.setAge(
20
);
st0.setName(
"
老大
"
);
st0.setScore(
95
);
st0.setSex(
"
男
"
);
st0.setStuno(
1001
);
student[
0
]
=
st0;
Student st1
=
new
Student();
st1.setAge(
21
);
st1.setName(
"
老二
"
);
st1.setScore(
92
);
st1.setSex(
"
男
"
);
st1.setStuno(
1002
);
student[
1
]
=
st1;
Student st2
=
new
Student();
st2.setAge(
22
);
st2.setName(
"
老三
"
);
st2.setScore(
76
);
st2.setSex(
"
女
"
);
st2.setStuno(
1003
);
student[
2
]
=
st2;
Student st3
=
new
Student();
st3.setAge(
28
);
st3.setName(
"
老四
"
);
st3.setScore(
60
);
st3.setSex(
"
男
"
);
st3.setStuno(
1004
);
student[
3
]
=
st3;
Student st4
=
new
Student();
st4.setAge(
20
);
st4.setName(
"
老五
"
);
st4.setScore(
85
);
st4.setSex(
"
女
"
);
st4.setStuno(
1005
);
student[
4
]
=
st4;
return
student;
}
}
package
gov.school.student;
public
class
StudentClient
{
public
static
void
main(String[] args)
{
//
TODO Auto-generated method stub
Student stud []
=
StudentServer.getStudent();
String level
=
"
a
"
;
int
q
=
0
,w
=
0
,e
=
0
,r
=
0
,t
=
0
;
for
(
int
i
=
0
;i
<
stud.length;i
++
)
{
if
(stud[i].getScore()
>
90
)
{
level
=
"
A
"
;
q
++
;
}
else
if
(stud[ i].getScore()
>
80
)
{
level
=
"
B
"
;
w
++
;
}
else
if
(stud[ i].getScore()
>
70
)
{
level
=
"
C
"
;
e
++
;
}
else
if
(stud[ i].getScore()
>
60
)
{
level
=
"
D
"
;
r
++
;
}
else
{
level
=
"
E
"
;
}
System.out.println(stud[i].getName()
+
"
"
+
stud[i].getAge()
+
"
岁,性别:
"
+
stud[i].getSex()
+
"
, 学号:
"
+
stud[i].getStuno()
+
"
, 得分:
"
+
stud[i].getScore()
+
"
, 得分等级:
"
+
level
+
"
。
"
);
}
System.out.println(
"
\n
"
+
"
等级为 A 的人数为:
"
+
q);
System.out.println(
"
等级为 B 的人数为:
"
+
w);
System.out.println(
"
等级为 C 的人数为:
"
+
e);
System.out.println(
"
等级为 D 的人数为:
"
+
r);
System.out.println(
"
等级为 E 的人数为:
"
+
t);
}
}
运行结果:
posted on 2010-10-10 18:21
Mineralwasser
阅读(182)
评论(3)
编辑
收藏
FeedBack:
#
re: student
2010-10-10 18:33 |
Tovep
LZ写的很好啊!
回复
更多评论
#
re: student
2010-10-10 19:53 |
迷人笑笑
很不错啊!!前进的这么快!!呵呵--加油!!
回复
更多评论
#
re: student
2010-10-10 22:41 |
Mineralwasser
谢谢@迷人笑笑
回复
更多评论
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
<
2024年11月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
文章档案
(21)
2010年11月 (8)
2010年10月 (13)
搜索
最新评论
1. re: String的两种实例化方式的区别
String a=new String();
a="hello";
为何不报错?
--小学员
2. re: JAVA流技术(IO编程)
re: JAVA流技术(IO编程)
--re: JAVA流技术(IO编程)
3. re: String的两种实例化方式的区别
讲的很好。
--jjx
4. re: String的两种实例化方式的区别
你对string分析得很具体,到位.
--Ma
5. re: 构造函数--公司员工信息
3@dan
--死掉
阅读排行榜
评论排行榜