AP CSA 2.7 Exercise 1: Digit Peeler

Unit 2: Selection and Iteration · Lesson 2.7 · Exercise 1

Digit Peeler

while Loops. Write real Java, run it, and submit it to be graded against hidden test cases.

Why this one is worth doing

A while loop is the right shape when you do not know how many times you are going round. Peeling the digits off a number is the classic case: the number itself decides when to stop.

What to write

  1. Read one non-negative integer n.
  2. Using a while loop, print each digit of n on its own line, from the LAST digit to the first.
  3. After the loop, print how many digits you printed.
  4. Print the sum of those digits on the final line.
  5. Treat 0 as having one digit, which is 0.

Your program reads

A single non-negative integer.

Your program prints

One line per digit from last to first, then the digit count, then the digit sum.

Worked examples

These are the cases you can see. There are more you cannot, and they use different values, so an answer that prints these numbers as constants will fail.

Example 1 input
4271
Example 1 output
1
7
2
4
4
14
Example 2 input
9
Example 2 output
9
1
9

Your answer

Main.java

Input for the Run button

Run sends whatever is in the input box below. Submitting runs your program against every test case, including hidden ones with different input.


  

  

Stuck?

Hint 1

n % 10 gives the last digit and n / 10 throws it away. Doing both every pass is the whole loop.

Hint 2

If you never change n inside the loop, the condition never becomes false and the run times out.

Hint 3

Zero needs its own line before the loop, because while (n > 0) never runs for it.

Where to go next

Get in Touch

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.

🏫 Welcome, fellow educator!

I offer curriculum resources, practice materials, and study guides designed for AP CS teachers. Let me know what you're looking for — whether it's classroom materials, a guest speaker, or Teachers Pay Teachers resources.

Email

[email protected]

📚

Courses

AP CSA, CSP, & Cybersecurity

Response Time

Within 24 hours

Prefer email? Reach me directly at [email protected]