Results 1 to 3 of 3
- 03-09-2010, 07:05 PM #1
Member
- Join Date
- Mar 2010
- Posts
- 13
- Rep Power
- 0
- 03-09-2010, 07:42 PM #2
Senior Member
- Join Date
- Feb 2009
- Posts
- 303
- Rep Power
- 5
Check out this class
Math (Java 2 Platform SE v1.4.2)
- 03-09-2010, 07:58 PM #3
Member
- Join Date
- Mar 2010
- Posts
- 13
- Rep Power
- 0
Ahhh. That helps a bit but how do I put it all together.
I am trying to create a class to solve for all parts of Pythagoreans Theorem. I am starting with solving for the sides and then moving on to solving for the angles. I'm just going to show you what I have so far. I know its not right but here.
Where should the following go in the above section? Does it go in there or should it be in the Test Class?Java Code:public class Pythagoras { private int x, y, z; public Pythagoras(int x, int y, int z) { x = (int) 1; y = (int) 1; z = (int) 1; } public void calculate() { z = ((x * x) + (y * y)); x = ((z * z) - (y * y)); y = ((z * z) - (x * x)); } public int getSideX() { return x; } public int getSideY() { return y; } public int getSideZ() { return z; } }
I am a newbie and I'm trying to teach myself. I joined the forum because I figured that all you guys know a lot of Java and I could learn from all the problems that everyone else comes across and maybe even get to the point where I could help other people.Java Code:public static double sqrt(double a)
Similar Threads
-
Need help with math equation
By annabellastorm in forum New To JavaReplies: 4Last Post: 01-10-2010, 05:12 PM -
differential equation RK4
By arvindmer in forum New To JavaReplies: 3Last Post: 01-08-2009, 01:27 PM -
Quadratic Equation
By jpnym15 in forum New To JavaReplies: 4Last Post: 11-12-2008, 03:29 AM -
Help with an equation in java
By coco in forum New To JavaReplies: 1Last Post: 07-31-2007, 07:47 AM -
Help with quadratic equation in java
By paul in forum New To JavaReplies: 1Last Post: 07-25-2007, 08:23 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks