I was writing my first, well second if you count hello world, program and ran into a small issue.
My code:
import java.util.*;
class test {
public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    System.out.print("What is your name: ");
    String name = scan.nextLine();
    System.out.print("What is your favorite number: ");
    int favoriteNumber = scan.nextInt();
    System.out.print("What is your favorite game: ");
    String game = scan.nextLine();
}
}
So it scans in name and favoriteNumber but the program ends before asking the user to enter a favorite game. Essentially the user can only enter text twice instead of three times like I would like.
 
     
     
    