You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
343 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

public class sanjiaohanshu {
public static void intox(double x,int n) {
//x表示度数
double pi=Math.PI;
double a=x*(pi/180);
switch(n){
case 1:
System.out.println(Math.sin(a));break//sinx
case 2:
System.out.println(Math.cos(a));break//cosx
case 3:
System.out.println(Math.tan(a));break//tanx
}
}
}