I am making a program and I am at a part where I am wanting to ask the user to input the score for each judge that there is but when it starts and ask for the first judge it is correct saying "Enter score for judge 01"
but when it goes to the next one it skips 02 and goes straight to 11, then 21. What am I doing wrong? Here is the line of code for this area
int[] judge = new int[7];
for(int i = 0; i<judge.length; i++)
{
System.out.println("Enter the difficulty score for each judge (0-10)");
System.out.println("Enter the score for judge" + i+1);
judge[i]=keyboard.nextInt();
while(score > 0 && score <=10);
}
}