陈佳豪


私信TA

用户名:dotcpp0665353

访问量:2629

签 名:

等  级
排  名 358
经  验 5266
参赛次数 1
文章发表 48
年  龄 0
在职情况 学生
学  校 淄博职业学院
专  业 软件技术·

  自我简介:

解题思路:

注意事项:

参考代码:import java.util.Scanner;

package Demon2;
//题目1066
import java.util.Scanner;

public class 自定义函数 {
   //计算阶乘的方法
   public static double fact(int n) {
       if (n == 1) {
           return 1;
       } else {
           return n * fact(n - 1);
       }
   }
   //计算幂的方法
   public static double mypow(double x,int n){
       return Math.pow(x,n);
   }
   public static void main(String[] args) {
       Scanner sc=new Scanner(System.in);
       double x=sc.nextDouble();
       int n=sc.nextInt();
       double sum=0;
       double s=0;
       //迭代计算每一项的和,并相加
       for(int i=1;i<=n;i++){
           s=mypow(-1,i+1)*mypow(x,i)/fact(i);
           sum+=s;
       }
       System.out.printf("%.4f",sum);
   }
   }

 

0.0分

0 人评分

  评论区

  • «
  • »