Answered step by step
Verified Expert Solution
Question
1 Approved Answer
CHALLENE29.1: Coordinate geometry Determine the distance between point (x1, y1) and point (x2, y2), and assign the result to pointsDistance. The calculation is stance- 2-x1)2
CHALLENE29.1: Coordinate geometry Determine the distance between point (x1, y1) and point (x2, y2), and assign the result to pointsDistance. The calculation is stance- 2-x1)2 + (y2-y1 Ex: For points (1.0,2.0) and (1.0, 5.0), pointsDistance is 3.0 3 public class CoordinateGeometry 4 public static void main(String[ args) f Scanner scnr new Scanner(System.in); double x1; double yl; double x2; double y2; double pointsDistance; double xDist; double yDist; 12 pointsDistance = 0.0; xDist = 0.0; yDist 0.0 15 16 17 18 19 20 21 x1scnr.nextDouble) y1 scnr.nextDouble); x2scnr.nextDouble) y2 scnr.nextDouble); 23 Your solution goes here Run
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started