Advertisement
MrsMcLead

DerivativeRunner

Sep 30th, 2014
819
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class DerivativeRunner
  2. {
  3.   public static void main (String args[])
  4.   {
  5.    //find derivative of 2x^2 + 3x - 500000
  6.     Derivative equation1 = new Derivative();
  7.     equation1.setCoefficients(2,3);
  8.     equation1.derive();
  9.   }
  10.  
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement