FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-basics/java-programs/MoveZerosInArrays.java at master · learning-zone/java-basics · GitHub
learning-zone
/
java-basics
Public
Notifications
You must be signed in to change notification settings
Fork
875
Star
1.9k
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
java-basics
/
java-programs
/
MoveZerosInArrays.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (25 loc) · 550 Bytes
Breadcrumbs
java-basics
/
java-programs
/
MoveZerosInArrays.java
Copy path
File metadata and controls
28 lines (25 loc) · 550 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
package
misc
;
public
class
MoveZerosInArrays
{
static
void
pushZero
(
int
arr
[]) {
int
max
=
arr
.
length
;
int
temp
=
0
;
for
(
int
i
=
0
,
j
=
0
;
j
<
max
;
j
++) {
if
(
arr
[
j
] !=
0
) {
if
(
i
<
j
) {
temp
=
arr
[
i
];
arr
[
i
] =
arr
[
j
];
arr
[
j
] =
temp
;
}
i
++;
}
}
System
.
out
.
println
(
"Array after pushing zeros to the back: "
);
for
(
int
i
=
0
;
i
<
max
;
i
++) {
System
.
out
.
print
(
arr
[
i
] +
" "
);
}
}
public
static
void
main
(
String
[]
args
) {
int
arr
[] = {
0
,
9
,
8
,
4
,
0
,
0
,
2
,
7
,
0
,
6
,
0
,
9
};
pushZero
(
arr
);
}
}
Back
|
FazBrowse Home
|
New Git URL