Calculate Cosine in Java
Description
The following code shows how to calculate Cosine.
Example
/*from w ww. ja va2 s .c om*/
public class Main {
public static void main(String args[]) {
int angles[] = { 0, 30, 45, 60, 90, 180 };
for (int i = 0, n = angles.length; i < n; i++) {
double rad = Math.toRadians(angles[i]);
System.out.println("Angle: " + angles[i]);
System.out.println(" Cosine : " + Math.cos(rad));
}
}
}
The code above generates the following result.