web123456

Java string output reverse order conversion and output: Example

package com.company; import java.math.BigDecimal; import java.util.Arrays; import java.util.Collections; import java.util.List; public class Main { public static void main(String[] args) { // write your code here String [] s= new String[]{ "a","b","c","d","e" }; List<String> list = Arrays.asList(s); Collections.reverse(list); s=list.toArray(new String[0]);//If there is no specified type, an error will be reported for(String x: s) { System.out.println(x); } } }