Skip to content

This program is a quadratic equation solver that calculates the roots of a quadratic equation with given coefficients. The user is prompted to input the values of 'a', 'b', and 'c' and then the program solves the equation and displays the roots. If the value of delta is negative, the program displays an error.

Notifications You must be signed in to change notification settings

FilipRokita/Quadratic-Equation-Solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Quadratic Equation Solver

The Quadratic Equation Solver is a simple console application that can solve quadratic equations of the form ax^2 + bx + c = 0. It prompts the user to input the values of a, b, and c, and then calculates and displays the values of x1 and x2.

How to Use

  1. Run the program by compiling and executing the quadratic_equation_solver.cpp file in your preferred C++ development environment.
  2. When prompted, enter the values of a, b, and c for your quadratic equation.
  3. The program will then calculate and display the values of x1 and x2, if they exist.
  4. Press any key to continue and solve another quadratic equation.

Requirements

  • C++ development environment (e.g. Visual Studio, Code::Blocks, etc.)

Notes

  • If the discriminant (b^2 - 4ac) is less than zero, the program will display a message indicating that the equation has no real roots.

I hope you find this program useful!

About

This program is a quadratic equation solver that calculates the roots of a quadratic equation with given coefficients. The user is prompted to input the values of 'a', 'b', and 'c' and then the program solves the equation and displays the roots. If the value of delta is negative, the program displays an error.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages