Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Needing help with this C++ practice problem The equation of a line in standard form is ax +by = c, where in both a and

Needing help with this C++ practice problem

The equation of a line in standard form is ax +by = c, where in both a and b cannot be zero, and a, b, and c are real numbers. If b is not equal to zero, then a/b is the slope of the line. If a=0, then it is a horizontal line, and if b=0, then it is a vertical line. The slope of a vertical line is undefined. Two lines are parallel if they have the same slope or both are vertical lines. Two lines are perpendicular if either one of the lines is horizontal and the other is vertical, or the product of their slopes is -1.

Design the class lineType to store a line. To store a line, you need to store the values of a (coefficient of x), b (coefficient of y), and c. The class must contain the following operations:

  1. If a line is nonvertical, then determine its slope.
  2. Determine if two lines are equal. (Two lines a1x + b1y = c1 and a2x + b2y = c2 are equal if either a1=a2, b1=b2, and c1=c2, or a1=ka2, b1=kb2, and c1=kc2, for some real number k.)
  3. Determine if two lines are parallel.
  4. Determine if two lines are perpendicular.
  5. If two lines are not parallel, then find the point of intersection.

Add appropriate constructors to initialize variables of lineType.

Write a main driver program to test the class. Do not include any keyboard input with the program. Include enough examples so that it is obvious that all of the operations defined for the class are working correctly.

Break the program into three files:

  1. implementation file (.cpp)
  2. header file (.h)
  3. main driver file (.cpp)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Object Oriented Databases Prentice Hall International Series In Computer Science

Authors: John G. Hughes

1st Edition

0136298745, 978-0136298748

More Books

Students also viewed these Databases questions

Question

LO 6-3 Summarize ways to learn about how small businesses operate.

Answered: 1 week ago

Question

Write short notes on Interviews.

Answered: 1 week ago

Question

Are there any questions that you want to ask?

Answered: 1 week ago