Java17 ファイルのタイムスタンプを設定するサンプル

環境
Windows11 pro 64bit
java 17.0.2

構文
Math.cosh(ラジアン値)
cosh(ハイパーボリックコサイン)値を取得するには、「Math.cosh」関数を使います。

使用例

public class Main {
 public static void main(String[] args) throws Exception {

        System.out.println(Math.cosh(Math.toRadians(45))); 
        System.out.println(Math.cosh(Math.toRadians(-45)));  

  }
}

実行結果
1.3246090892520057
1.3246090892520057

Java

Posted by arkgame