Maurice Tutor

(5)

$15/per page/Negotiable

About Maurice Tutor

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Algebra,Applied Sciences See all
Algebra,Applied Sciences,Biology,Calculus,Chemistry,Economics,English,Essay writing,Geography,Geology,Health & Medical,Physics,Science Hide all
Teaching Since: May 2017
Last Sign in: 406 Weeks Ago, 4 Days Ago
Questions Answered: 66690
Tutorials Posted: 66688

Education

  • MCS,PHD
    Argosy University/ Phoniex University/
    Nov-2005 - Oct-2011

Experience

  • Professor
    Phoniex University
    Oct-2001 - Nov-2016

Category > Computer Science Posted 19 Sep 2017 My Price 7.00

file Distance.java

The file Distance.java contains an incomplete program to compute the distance between two points. Recall that the distance

between the two points (x1, y1) and (x2, y2) is computed by taking the square root of the quantity (x1 - x2)2 + (y1 - y2)2. The

program already has code to get the two points as input. You need to add an assignment statement to compute the distance

and then a print statement to print it out (appropriately labeled). Test your program using the following data: The distance

between the points (3, 17) and (8, 10) is 8.6023... (lots more digits printed); the distance between (-33,49) and (-9, -15) is

68.352....

// ************************************************************

// Distance.java

//

// Computes the distance between two points

// ************************************************************

import java.util.Scanner;

public class Distance

{

public static void main (String[] args)

{

double x1, y1, x2, y2; // coordinates of two points

double distance;

// distance between the points

Scanner scan = new Scanner(System.in);

// Read in the two points

System.out.print ("Enter the coordinates of the first point " +

"(put a space between them): ");

x1 = scan.nextDouble();

y1 = scan.nextDouble();

System.out.print ("Enter the coordinates of the second point: ");

x2 = scan.nextDouble();

y2 = scan.nextDouble();

// Compute the distance

// Print out the answer

}

}

Answers

(5)
Status NEW Posted 19 Sep 2017 09:09 PM My Price 7.00

Hel-----------lo -----------Sir-----------/Ma-----------dam-----------Tha-----------nk -----------You----------- fo-----------r u-----------sin-----------g o-----------ur -----------web-----------sit-----------e a-----------nd -----------and----------- ac-----------qui-----------sit-----------ion----------- of----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n.P-----------lea-----------se -----------pin-----------g m-----------e o-----------n c-----------hat----------- I -----------am -----------onl-----------ine----------- or----------- in-----------box----------- me----------- a -----------mes-----------sag-----------e I----------- wi-----------ll

Not Rated(0)