Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need help with this, the language used is Java. Would love a step by step Problem b (PA2b. java) Write a program that solves a

Need help with this, the language used is Java. Would love a step by step image text in transcribed
Problem b (PA2b. java) Write a program that solves a quadratic equation of the form: ax2+bx+c=0 Specifically, the user will input the values (double) of a,b, and c. Your program must then calculate and output the roots of the equation, following these rules. First, calculate the discriminant: d=b24ac - If the discriminant is negative, the roots are imaginary. Print out a message informing the user of this and stop the program. For example: Enter a b c: 114 Roots: imaginary - If the discriminant is exactly zero, there is one root. Inform the user of this one root: b/2a. You must provide exactly two decimal places in your response, rounding as necessary. For example: Enter a b c: 144 Root: 2.00 - If the discriminant is positive, there are two roots. Inform the user of the value of the roots in increasing order of value (i.e. the smaller root first, followed by the larger). You must provide exactly two decimal places in your response, rounding as necessary. For example: Enterabc:165Roots:5.00,1.00 Note that the JUnit tests, and grading, will be very picky about exact spacing, spelling, capitalization, and number formatting

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

Students also viewed these Databases questions

Question

What is the key element of the close-out phase?

Answered: 1 week ago

Question

7. Identify six intercultural communication dialectics.

Answered: 1 week ago