AP CSA 1.6 Exercise 1: Score Multiplier

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

Score Multiplier

Compound Assignment Operators. Write real Java, run it, and submit it to be graded against hidden test cases.

Why this one is worth doing

Every compound operator rewrites the variable it is applied to. Print after each one and the sequence stops being something you have to hold in your head.

What to write

  1. Read one integer as the starting score.
  2. Apply these four operators to it, in this order: += 10, then *= 3, then -= 4, then %= 7.
  3. Print the score after each one, so four lines in total.

Your program reads

A single integer.

Your program prints

Four lines: the score after each of the four compound assignments.

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
5
Example 1 output
15
45
41
6
Example 2 input
0
Example 2 output
10
30
26
5

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

score += 10 is short for score = score + 10. It changes score, it does not just compute a value.

Hint 2

Each operator works on the result of the one before it, so the order matters more than the arithmetic does.

Hint 3

A negative starting score can leave a negative remainder at the end. That is correct Java, not a bug in your code.

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]