#include<stdio.h> #include<math.h> int main() { float x,i; scanf("%f",&x); double tmp=x,y=x; i=2; while(tmp>=0.00001) { tmp=pow(x,i); for(int k=1;k<=i;k++) tmp=tmp/k; y+=tmp; i++; } printf("%.3f",y); return 0; }
原文地址:https://www.cnblogs.com/chenlong991223/p/9865000.html
时间: 2024-11-08 23:55:08