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.





















Home »
  Java Tutorial »
    Development »




Java Algorithms
Java Clipboard
Java Compiler
Java Desktop
Java Virtual Machine
Java Math
OS
Random
Java Robot
Java RuntimeMXBean
Java Timer
Java UUID
Java Internationalization