Search:

Type: Posts; User: WontonSoup

Search: Search took 0.13 seconds.

  1. Re: having problems with my pig latin translator (the translating portion)

    Thank you, but i'm not sure where i should define this as a boolean, & im not too sure how. (Yes i'm a noob).
  2. having problems with my pig latin translator (the translating portion)

    import java.util.*;

    public class PigLatinTranslator
    {
    public String translate (String sentence)
    {
    String result = "";

    sentence = sentence.toLowerCase();
    Scanner scan = new...
Results 1 to 2 of 2