Re: Java cant find symbols?
Well, when you call the Math.java.pow you don't actually need to add the .java in there, that's why it's giving you the cannot find symbol error, afterwards you're going to run into initialization errors, when you compute the distance, you're program is going to try to compute d as however, e and f have not yet been initialized!
Re: Java cant find symbols?
yeah i caught myself with e and f. that is fixed now. removing the.java worked and the code ran without errors. Thanks a bunch!
Re: Java cant find symbols?
Quote:
Originally Posted by
jjd712
yeah i caught myself with e and f. that is fixed now. removing the.java worked and the code ran without errors. Thanks a bunch!
Awesome, glad it worked. Nice catch with the e and f. Good Luck! :D