So I'm in an intro Java course, making a grade calculator with the added task of adjusting grades on this set of conditions:
If the student has done the bonus work:
- The Exam 1 grade is either:
- 80% of Exam 2’s grade if it is higher than the original Exam 1 grade, or
- the original Exam 1 grade.
- The Exam 2 grade is either:
- 80% of Exam 3’s grade if it is higher than the original Exam 2 grade, or
- the original Exam 2 grade.
The modification is always made for Exam 1 first.
I've tried this first with the exam 1 grade, attempting to assign g1n the value g2 * 0.8 if (g2 * 0.8) > g1, and giving it the value of g1 otherwise. I'm having trouble seeing how g1n isn't being initialized since it seems to me like the conditions I've just listed are exhaustive.
Below is the relevant part of my code. What gives?
// declare variables
int g1;
int g2;
int g3;
char grade;
double g1n;
double g2n;
double avg;
String bonus;
// get input
System.out.println("*************** Grade Computer *************");
System.out.println("Enter the student's first name: ");
String first = input.next();
System.out.println("Enter the student's middle initial: ");
String mid = input.next();
System.out.println("Enter the student's last name: ");
String last = input.next();
System.out.println("Enter EXAM 1 grade: ");
g1 = input.nextInt();
System.out.println("Enter EXAM 2 grade: ");
g2 = input.nextInt();
System.out.println("Enter EXAM 3 grade: ");
g3 = input.nextInt();
System.out.println("Was bonus work done? [yes/no]: ");
bonus = input.next();
System.out.println(g1 + " " + g2 + " " + g3 + " " + bonus);
// adjust exam scores if necesssary
if (bonus.equals("yes")) {
if (((double)g2 * 0.8) > g1) {
g1n = ((double)g2 * 0.8);
} else {
g1n = (double)g1;
}
}
EDIT:
I changed it to this and am still getting the same message...
if (bonus.equals("yes")) {
if (((double)g2 * 0.8) > g1) {
g1n = ((double)g2 * 0.8);
}
if (((double)g3 * 0.8) > g2) {
g2n = ((double)g3 * 0.8);
}
} else {
g1n = (double)g1;
g2n = (double)g2;
}
// compute average
avg = (g1n + (double)g2 + (double)g3) / 3;

if, you have twoifs, but notelses. Which means that it is possible to enter the firstif(bonusequals"yes"), but not enter any of the innerifs (smallg2and smallg3). This error occurs because you aren't accounting for all scenarios. You should initialize the variable or cover all possible branches. – pgreen2 Jan 17 at 18:35