Question: import java.util.Scanner; public class PigLatin { public static void main (String[] args){ Scanner scan = new Scanner(System.in); String input = scan.nextLine(); String[] input = translate(input);

 import java.util.Scanner; public class PigLatin { public static void main (String[]

import java.util.Scanner;

public class PigLatin { public static void main (String[] args){ Scanner scan = new Scanner(System.in); String input = scan.nextLine(); String[] input = translate(input); print(input); } public static String[] translate(String[] input) { String[] pigLatin = new String[input.length]; for (int i = 0; i 0 && c == 'y') return i; i++; } return -1; } public static boolean isVowel(char c) { if( c =='a' || c == 'e' || c == 'i' || c == 'o' || c == 'u') // checks if character is a vowel return true; else return false; } public static void print(String[] input){ for (int i = 0; i

my code is wrong and doesnt allow input of sentences

Task Rules of Translation: If the word begins with a consonant, take the beginning consonants up until the first vowel and move them to the end of the word Then append ay at the very end. (so cricket would become icketcray) If the word begins with a vowel, simply add ay to the end. (apple would become appleay) If y is the first letter in the word, treat it as a consonant, otherwise it is used as a vowel. (young would become oungyay and system would become ystemsay) Assume all nput is lowercase and alphabetical (so don't worry about checking for casingumbers/symbols) The main method should have as few lines code as possible, and the template has suggested method headers. Feel free to rename variables and methods in a way that makes sense for you, but keep the general format

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!