for loop should print .8 if studentScore is 63, .9 if studentScore is 64... 3.9 if studentScore is 94
System.out.println("Enter student's score: ");
int studentScore = console.nextInt();
double score = 0;
if(studentScore >= 63 && studentScore < 95){
for(score = .8; score <= studentScore; score++){
score += .1;
}
System.out.printf("Your grade is: %.1f", score-studentScore);
}
else if (studentScore >= 95){
System.out.println("Your score is 4.0");
}
else if(studentScore >= 60 && studentScore <=62){
System.out.println("Your score is 0.7");
}
else{
System.out.println("Your score is 0.0");
}