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.

16 lines
309 B

l
public class ex {
public static void jisuan_ex(double x) {
// TODO Auto-generated method stub
double e=Math.E;
double x,result;
System.out.println("请输入x的值");
result=Math.pow(e,x);
System.out.println("result="+result);
break;
}
}
}