import java.util.*; public class PigLatin { String txt; int len; PigLatin() { txt=""; len=0; } void readstring() { Scanner sc=new Scanner(System.in); System.out.print("\n \tEnter The word in UPPER CASE \n \t"); txt=sc.nextLine(); txt=txt.toUpperCase(); len=txt.length(); convert(); } void convert() { for(int i=0; i