Question: How do I make my code output the sin and cos in degrees. Im currently getting the sin and cos in radians public class mathtable
How do I make my code output the sin and cos in degrees. Im currently getting the sin and cos in radians
public class mathtable {
public static void main(String[] args) {
System.out.print("Degree\tSin\tCos");
for(int i=0; i<=360; i=i+10){
System.out.print(" "+i+"\t");
System.out.print((double)Math.round(Math.sin(i) * 10000d) / 10000d + "\t"+ (double)Math.round(Math.cos(i) * 10000d)/ 10000d);
}
}
}
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
