Search results

  1. H

    Java, nextLine() help

    Hi, I have this code but for some reason the nextLine() does not get executed, any ideas on why? Any help would be great, thanks. public static void menu() { Tester getQuestion = new Tester(); Scanner input = new Scanner(System.in); while(Quit == false) {...
  2. H

    Java, drawing a triangle using * symbols help

    So my assignment is to draw a triangle using the * symbol. The program will ask the user for a length input, which will be the height (number of lines). ___--* __--* * __-* * * --* * * * (Example of length = 4, ignore the _ and -, just put those so that it looks...