How can you reverse the elements of the given string array?
Anonymous
if(strArr.length == 0){ System.out.println("The array is empty"); } else { for(int i = strArr.length-1; i>=0; i--){ System.out.print(strArr[i] +", "); } } I believe this is the answer to the question. If I am wrong please corrent me
Check out your Company Bowl for anonymous work chats.