Java program to shuffle words
e.g:-
Input: hello dear
output: dear hello
Input: hello dear how are you ?
output: dear how are you ? hello
Two approaches
String class
by using charAt() and concatenation+
StringBuffer class
Comments