编辑代码

#include <stdio.h>
int main () {
    double x,n,temp,r;
    scanf("%lf %lf",&x,&n);
    temp=1;
    r=1;
    for(int i=1;i<=n;i++){
        temp=temp*x/i
        r+=temp;
    }
    printf("%.4lf",r);
	return 0;
}