学习内容:数学运算 1.三角函数运算 代码实现: public class 三角函数运算 { public static void main(String[] args) { // TODO 自动生成的方法存根double a1=Math.sin(Math.PI/2);//求正弦值double a2=Math.cos(0);//求余弦值double a3=Math.tan(Math.PI/3);//求正切值double b1=Math.asin(Math.sqrt(2)/2);//反正弦值dou…