I have some trouble in getting Java to read the first character in a String. I have here included the code up to this point (the code beyond this is, I don't think, relevant at all):
import java.util.Scanner;
public class SeveralDice {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("How many dice do you want to use? ");
int numberOfDice = input.nextInt();
SeveralDice game = new SeveralDice(numberOfDice);
System.out.print("You have 0 points. Another try(y/n)? ");
boolean turn = true;
String answerInput;
char answer;
int lastValue = 0;
while (turn) {
answerInput = input.nextLine();
answer = answerInput.charAt(0);
if (answer == 'y') {. . . . .
And then the code continues. However, when I run the program, I get the error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
at java.lang.String.charAt(Unknown Source)
at SeveralDice.main(SeveralDice.java:25)*
Line 25 is the line answer = answerInput.charAt(0);. So obviously something goes wrong here. Any help would be greatly appreciated!