According to Wolfram Mathematica:
cos(50) = 0.6427876096865394;
But this code in Java:
System.out.println(Math.cos(50));
gives 0.9649660284921133.
What is wrong with java.lang.Math?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Math.cos()expects the parameter to be in radians. This will return the result you need: