You are viewing a single comment's thread. Return to all comments →
what is the issue with this ?
// Scanner scanner = new Scanner(System.in); // int n = scanner.nextInt(); // int array1[] = new int[n]; // for(i=0;i<n;i++){ // array1[i] = scanner.nextInt(); // } // for(j=(n-1); j>=0 ; j--){ // System.out.println(array1[j]); // for(j=n-1;j>0;j--){ // System.out.print(" "); // } // }
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Day 7: Arrays
You are viewing a single comment's thread. Return to all comments →
what is the issue with this ?