初めてJavaを勉強しています。私は簡単なプログラムを書きました:
public class Solver {
public static void main(String[] args) {
double angle = 1.5;
double height = Math.sin(angle);
System.out.print("The sine of " + angle + " is: ");
System.out.println(height);
}
}
これをコンパイルしようとすると、ターミナルに次のエラーが表示されます。
Solver.java:4: cannot access Math
bad class file: ./Math.java
file does not contain class Math
Please remove or make sure it appears in the correct subdirectory of the classpath.
double height = Math.sin(angle);
^
1 error
Math クラスにアクセスできないのはなぜですか?