FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/day21/code/java/ForTest5.java at master · annjeff/Java · GitHub
annjeff
/
Java
Public
forked from
DuGuQiuBai/Java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
day21
/
code
/
java
/
ForTest5.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (27 loc) · 569 Bytes
Breadcrumbs
Java
/
day21
/
code
/
java
/
ForTest5.java
Copy path
File metadata and controls
29 lines (27 loc) · 569 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
需求:请在控制台输出满足如下条件的五位数
个位等于万位
十位等于千位
个位+十位+千位+万位=百位
分析:
A:五位数告诉我们范围。
B:获取每一个位上的数据。
C:满足条件
个位等于万位
十位等于千位
个位+十位+千位+万位=百位
*/
class
ForTest5
{
public
static
void
main
(
String
[]
args
) {
for
(
int
x
=
10000
;
x
<
100000
;
x
++) {
int
ge
=
x
%
10
;
int
shi
=
x
/
10
%
10
;
int
bai
=
x
/
10
/
10
%
10
;
int
qian
=
x
/
10
/
10
/
10
%
10
;
int
wan
=
x
/
10
/
10
/
10
/
10
%
10
;
if
((
ge
==
wan
) && (
shi
==
qian
) && (
ge
+
shi
+
qian
+
wan
==
bai
)) {
System
.
out
.
println
(
x
);
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL