Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~422 People Reached
Favorite Forums
Favorite Tags
java x 2
Member Avatar for Ankit_22

Can anyone help me out with this program import java.util.Scanner; public class Quadratic { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter three coefficients for a quadratic equation: "); double a = sc.nextDouble(); double b = sc.nextDouble(); double c = sc.nextDouble(); if (a == 0.0) System.out.println("Error: …

Member Avatar for JamesCherrill
0
422