An array is initialized with n integers. Write a java program to locate all zeros in this array and shift them to the
left. The order of other numbers should not change in the array. e.g. Input: n = 10 6,10,0,89,678,8,0,64,0,3,0
Output: 0,0,0,0,610,89,678,8,64,3