Compute a solution of the equation

Assignment Help Computer Engineering
Reference no: EM132211522

Write a program that uses the following subroutine, to solve equations specified by the user.

/**
* Returns the larger of the two roots of the quadratic equation
* A*x*x + B*x + C = 0, provided it has any roots. If A == 0 or
* if the discriminant, B*B - 4*A*C, is negative, then an exception
* of type IllegalArgumentException is thrown.
*/
static public double root( double A, double B, double C )
throws IllegalArgumentException {
if (A == 0) {
throw new IllegalArgumentException("A can't be zero.");
}
else {
double disc = B*B - 4*A*C;
if (disc < 0)
throw new IllegalArgumentException("Discriminant < zero.");
return (-B + Math.sqrt(disc)) / (2*A);
}
}

Your program should allow the user to specify values for A, B, and C. It should call the subroutine to compute a solution of the equation.

If no error occurs, it should print the root.

However, if an error occurs, your program should catch that error and print an error message. After processing one equation, the program should ask whether the user wants to enter another equation.

The program should continue until the user answers no.

Reference no: EM132211522

Questions Cloud

Display a row of asterisks of length equal to the input : Write a program that takes an integer from standard input and then displays a row of asterisks of length equal to the input or equal to 20,whichever is smaller.
Display the characters for the ascii values 33 through 126 : Write a program that uses a "for" loop to display the characters for the ASCII values 33 through 126.
Take two command line arguments which are file names : Write a program that takes two command line arguments which are file names.
Write a program that used a stack to test input strings : Write a program that used a stack to test input strings to determine whether they are palindromes.
Compute a solution of the equation : Your program should allow the user to specify values for A, B, and C. It should call the subroutine to compute a solution of the equation.
Display the equation of the line through those points : Write a program that has the user input two points in the xy-plane, and then displays the equation of the line through those points in y = mx + b form.
Write a program using cygwin that calculates tension : Write a program using Cygwin that calculates tension. Declare variables and input your own number.
Write a program that uses a function matrix to add matrices : Write a program that uses a function matrix_addition {} to add two matrices and put the result into a third matrix .
Take a series of int values as command line arguments : Calculate a total from the values, but add the values that are even, and subtract the values that are odd.

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd