分别用do-while和for循环计算1+1/2!+1/3!+???????????的前20项的和

日期:2016-12-02 01:04:50 人气:1

分别用do-while和for循环计算1+1/2!+1/3!+???????????的前20项的和

#include #include int main() { double a=1.0,b,c=0.0; while(a<=20){ b=1/a; c=c+b; a++; } printf("%f",c); system("pause"); return 0
    A+
热门评论