Write a C++ program that does the following: Read and input file xycoordinates.txt containing the following: PersonName X Y where the coordinates of PersonName is provided as X, Y in a 100 by 100 room...


Write a C++ program that does the following:



  • Read and input file xycoordinates.txt containing the following: PersonName X Y where the coordinates of PersonName is provided as X, Y in a 100 by 100 room

  • Use square root function in cmath sqrt() to calculate the shortest distance between two coordinates (Remember the Pythagorean Theorem?)

  • Write a program tracing.cpp that should load the xycoordinates.txt file into an 3 parallel arrays consisting of person[ ], x[ ], y[ ]. You can use either subscript notation or pointer arithmetic to access the data in the arrays. Optionally, you can use a struct array if you want to read ahead about the next module. (10 points bonus).

  • The program should use the arrays to calculate the distance between every pair in the room.

  • The program should use a function call that returns the distance. If the distance is less than 6 feet, report the case giving the names and the calculated distance in a court statement:


Example: Apple and Barry are 4 feet apart and violating COVID-19 social distancing guidelines.


xycoordinates.txt


Apple 3 4 John 5 2 Ben 10 4 Carla 4 3 Sonny 70 55 Tom 24 34 Jerry 29 39 Tim 50 55 Tracy 88 31 Tammy 87 90 Jim 74 89 James 72 88 Josh 59 24 Barry 12 78 Tommy 13 65 Carla 4 3 Barry 12 78 John 3 4 Sonny 70 55 Jerry 29 39 Juan 14 80 Ann 25 44 Margaret 28 79 Silvia 25 55



Data fields in xycoordinates.txt:


Person Name Column 1-10


X coordinate 11-14


Y coordinate 15-20



Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here