Advertisement
calcpage

C4X13_QuadraticEquationTester.java

Oct 25th, 2011
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. //QuadraticEquationTester.java  MrG 2011.1024
  2. public class QuadraticEquationTester
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         QuadraticEquation joey = new QuadraticEquation(1,2,-1);
  7.         System.out.println("disc = " + joey.getDisc());
  8.         System.out.println("root1 = " + joey.getRoot1());
  9.         System.out.println("root2 = " + joey.getRoot2());
  10.     }
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement