AP CSA 1.3 Exercise 1: Five Operators

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

Five Operators

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

Why this one is worth doing

Integer division and the remainder operator are the two the exam tests hardest, because they are the two that do not behave the way arithmetic class taught you.

What to write

  1. Read two integers, a and b. You may assume b is not zero.
  2. Print a + b, then a - b, then a * b, then a / b, then a % b.
  3. Each result goes on its own line, in that order.

Your program reads

Two integers on separate lines: a, then b.

Your program prints

Five lines: the sum, the difference, the product, the quotient and the remainder.

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
17
5
Example 1 output
22
12
85
3
2
Example 2 input
9
3
Example 2 output
12
6
27
3
0

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

int / int throws away the fraction rather than rounding. 7 / 2 is 3, and 4 / 9 is 0.

Hint 2

a % b is what is left over after the division. 4 % 9 is 4, because 9 goes into 4 zero times with 4 left.

Hint 3

When a is negative Java keeps the sign of a in the remainder, so -7 % 3 is -1.

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]