How to do a Reverse Display | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to do a Reverse Display

i want to learn to do a reverse display like i input"how are you"the it comes out"you are how"

6th Feb 2017, 11:18 AM
syazwandy radiatul
syazwandy radiatul - avatar
1 Answer
+ 1
public class Program { public static void main(String[] args) { String text="How are you"; String [] sText=text.split(" "); for(int i=sText.length-1;i>=0;i--){ System.out.print(sText[i]+' '); } } }
6th Feb 2017, 11:42 AM
ASNM
ASNM - avatar