Write Logic for below scenario with minimal loops * * * * * * * * * * * * * * * * * * * * *
Utilisateur anonyme
class RevEachSenWord { public static void main(String args[]) { String Raj="Welcome to GGKTech"; String GGK[]=Raj.split(" "); for(int i=0;i=0;j--) { System.out.printf("%s",Raj.charAt(j)); } System.out.printf(" "); } } }