1
2
3
4
5
6
7
8
9
10
11
12
|
public
class
A01 {
public
static
void
main(String[] args) {
// TODO Auto-generated method stub
int
num=
100
;
while
(num>=
5
){
System.out.println(num);
num-=
5
;
}
}
}
|
本文转自 Y幕徐 51CTO博客,原文链接:http://blog.51cto.com/765133133/1420242