Interesting Java.lang.Math Class

Interesting Java.lang.Math Class

public class UsingLangDotMath
{
   final int TWENTY_SEVEN = 27;
   
   public static void main(String args[])
   {
      UsingLangDotMath usingLangDotMath = new UsingLangDotMath();
      usingLangDotMath.proceed();
   }
   
   private void proceed()
   {
      System.out.println(“Cube root of 27: ” + Math.cbrt(TWENTY_SEVEN));
      System.out.println(“Trigonometric sine: ” + Math.sin(TWENTY_SEVEN));
      System.out.println(“Trigonometric cosine: ” + Math.cos(TWENTY_SEVEN));
      System.out.println(“Trigonometric tangent: ” + Math.tan(TWENTY_SEVEN));
      
   }
}

/*
Expected output:

[[email protected]]# java UsingLangDotMath
Cube root of 27: 3.0
Trigonometric sine: 0.956375928404503
Trigonometric cosine: -0.2921388087338362
Trigonometric tangent: -3.273703800428119

*/

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular