-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRemoveZero.java
More file actions
23 lines (21 loc) · 947 Bytes
/
Copy pathRemoveZero.java
File metadata and controls
23 lines (21 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.util.Scanner;
public class RemoveZero {
public static void main(String[] args) {
int i,size, index=0, count=0;
Scanner sc = new Scanner(System.in);
System.out.print("Enter the size of the array: ");
size = sc.nextInt();
int[] arr = new int[size];
System.out.print("Enter the elements of the array: ");
for(i=0; i<size; i++) { arr[i] = sc.nextInt();}
// count the non-zero element in the array:
for(i=0; i<size; i++) {if (arr[i] != 0) {count++;}}
// size of new array
int[] newArr = new int[count];
// copy non-zero elements into new array:
for(i=0; i<size; i++) {if(arr[i]!=0){newArr[index]=arr[i]; index++;}}
// display new array without zero:
System.out.print("The new array is: ");
for(i=0; i<count; i++) {System.out.print(newArr[i]+" ");}
}
}