|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public
class
A02 {
public
static
void
main(String[] args) {
// TODO Auto-generated method stub
int
i=
0
;
while
(i<
50
){
i++;
if
(i%
7
==
0
){
i+=i;
}
}
System.out.println(i);
}
}
|
本文转自 Y幕徐 51CTO博客,原文链接:http://blog.51cto.com/765133133/1420485