AP CSA 1.14 Exercise 1: Working the Account

Unit 1: Using Objects and Methods · Lesson 1.14 · Exercise 1

Working the Account

Calling Instance Methods. Write real Java, run it, and submit it to be graded against hidden test cases.

Why this one is worth doing

Some methods change the object and return nothing. Some return a value and change nothing. Telling them apart from the call alone is what this exercise drills.

What to write

  1. The Account class is written for you. Do not change it.
  2. Read an opening balance, a deposit and a withdrawal, all integers.
  3. Create one Account with the opening balance.
  4. Call deposit, then print the balance.
  5. Call withdraw, then print the balance.
  6. Print the number of transactions the account has recorded.

Your program reads

Three integers on separate lines: opening, deposit, withdrawal.

Your program prints

Three lines: the balance after the deposit, the balance after the withdrawal, and the transaction count.

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
100
50
30
Example 1 output
150
120
2
Example 2 input
0
0
0
Example 2 output
0
0
2

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

deposit returns void, so System.out.println(acct.deposit(in)) will not compile. Call it, then ask for the balance separately.

Hint 2

getBalance returns an int and changes nothing, so calling it twice in a row gives the same answer twice.

Hint 3

The account can go negative. Nothing in the class stops a withdrawal, and this exercise does not ask you to.

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]