nid some help we use basic code like int arr []=new arr[5].... like that....
import java.io.*;
public class aw{
public static void main(String args[])throws IOException{
BufferedReader bsit=new BufferedReader (new InputStreamReader (System.in));
int[]array = new int[10];
int x,y=0;
for (x = 0; x < 10; x++){
System.out.print("Enter a number: ");
array[x] = Integer.parseInt(bsit.readLine());
please continue this code......
