AP CSA 1.11 Exercise 1: Distance and Damage

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

Distance and Damage

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

Why this one is worth doing

Four Math methods in one expression each. The trap is not the maths, it is remembering which ones hand you back a double whether you wanted one or not.

What to write

  1. Read four integers: x1, y1, x2, y2, the coordinates of two points.
  2. Print the horizontal distance using Math.abs.
  3. Print the vertical distance using Math.abs.
  4. Print the straight line distance using Math.sqrt and Math.pow.
  5. Print the larger of the two coordinates x1 and y2 using Math.max, and then the smaller of x2 and y1 using Math.min, on separate lines.

Your program reads

Four integers on separate lines: x1, y1, x2, y2.

Your program prints

Five lines: the horizontal distance, the vertical distance, the straight line distance, the max and the min.

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
0
0
3
4
Example 1 output
3
4
5.0
4
0
Example 2 input
2
2
2
2
Example 2 output
0
0
0.0
2
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

Math.abs(int) gives you an int back, so the first two lines have no decimal point.

Hint 2

Math.sqrt always returns a double, so the third line always shows one. A distance of 5 prints as 5.0.

Hint 3

Math.pow(dx, 2) works, and so does dx * dx. The exam accepts either, and dx * dx stays an int.

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]