AP CSA 2.3 Debugging: Four Ifs Where One Chain Belongs
Unit 2: Selection and Iteration · Lesson 2.3 · Debugging
Four Ifs Where One Chain Belongs
if Statements. This is not a blank editor: it is someone else's attempt. Find what is wrong, fix it, and submit to be graded against hidden test cases.
A chain of else if stops at the first branch that matches. Four separate ifs do not stop at all, and every one of them gets tested. The output tells you immediately which one you wrote, if you read it.
What is wrong with it
Run the program on a score of 95. It prints more than one letter grade. The bands were written as four independent if statements instead of one if / else if chain, so a high score satisfies several of them. Rewrite it as a single chain that prints exactly one letter.
The PASS and FAIL line prints PASS for every score, including a 12. There is a stray semicolon immediately after the if condition, which ends the statement before the body. Find it and remove it.
The distance-from-100 line at the bottom is correct.
The program reads
A single integer score from 0 to 100.
The program should print
Three lines: exactly one letter grade, then PASS or FAIL, then how far the score is from 100.
Worked examples
These show what the FIXED program should print. There are more cases you cannot see, and they use different values, so patching around just these numbers will fail.
Example 1 input
95
Example 1 output
A
PASS
5
Example 2 input
12
Example 2 output
F
FAIL
88
Your answer
Main.java
Input for the Run button
Run sends whatever is in the code box below, bugs and all, so you can see the crash or the wrong answer for yourself before you fix anything.
Stuck?
Hint 1
Trace a score of 95 by hand through all five ifs. It is at least 90, and also at least 80, and also at least 70, and also at least 60. Four of the five bodies run. else if is what makes the second test unreachable once the first one matched.
Hint 2
A semicolon right after if (condition) is a complete, empty statement: the if runs it and does nothing. The block underneath is then just a plain block that always executes. This compiles without a single warning, which is what makes it worth recognizing on sight.
Hint 3
The FAIL case has to print something. Once you remove the stray semicolon you still need an else, or a failing score prints no second line at all.
Whether you're a student, parent, or teacher — I'd love to hear from you.
Just want free AP CS resources?
Enter your email below and check the subscribe box — no message needed.
Students get daily practice questions and study tips. Teachers get curriculum resources and teaching strategies.
Typically responds within 24 hours
✓
Message Sent!
Thanks for reaching out. I'll get back to you within 24 hours.
34.8% of Tanner’s CSP students score 5s. The national average is 9.6%.
I’m a Student
I’m a Teacher
✓Free AP CSP Big Ideas cheat sheet (PDF)
✓Daily practice questions covering all 5 Big Ideas
✓Create Task tips that actually work — from a real AP teacher
✓Free class codes with student progress tracking
✓3 full practice exams + Top 100 questions for your class
✓Create Task guidance and pseudocode reference sheets
Which AP CS exams are you prepping for?
✓
You’re in!
Your Big Ideas cheat sheet is on its way.
No thanks, I’ll figure it out myself
Avg student improvement: 2+ score levels | Real AP teacher, not just a tutor
AP Cybersecurity — National Launch 2026–27
Get Early Access to AP Cyber
AP Cyber launches nationally fall 2026. Get in early to help shape the course — start free with Unit 1 and the free teacher gradebook.
✓
You’re in — you’re on the AP Cyber early-access list!
Tanner will follow up personally within 48 hours. Your feedback will directly shape what gets built.
Step 1 of 4
Early Access — Limited Spots
Who are you?
Are you a teacher or a student?
I’m a Teacher
I’m a Student
Free to start — Unit 1 and the teacher gradebook are always free, no credit card.
Founding teachers unlock all 5 units and get direct input on what we build.
Not interested right now
Step 2 of 4
Your School
Tell us about your class
Other AP CS courses you teach
Your Situation
Tell us about yourself
Step 3 of 4
Classroom Needs
What does your classroom need? (select all that apply)
How You Study
What would help you most? (select all that apply)
Step 4 of 4
Almost Done
Where should we send your early-access details?
Free gradebook + Unit 1 | Your feedback shapes the course | Built by a real AP teacher