Javaプログラムを使用して異なる角度のsinusを検索しようとしています。角度が270または90の場合、結果は1になりますが、角度が180または360の場合結果は0ではない、なぜ?Javaを使用して180または360のsinusが0でない理由
Scanner keyboard = new Scanner(System.in);
double deg=0 ;
System.out.print("angle in deg :");
deg= keyboard.nextDouble(); //take the value from user//
double rad = deg*(Math.PI/180); // convert the value to rad//
System.out.print("sinus of the angle : " + Math.sin(rad)); //show the result//
結果:link
あなたの問題は何ですか? –
あなたはどのような結果を得ていますか? – Bathsheba
これが結果です。 –
mayas