程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 1007 Numerical Summation of a Series,numericalsummation

1007 Numerical Summation of a Series,numericalsummation

編輯:關於C語言

1007 Numerical Summation of a Series,numericalsummation


簡單入門題。按照題目給的指導編程,算多少數要理解題意。

 1 #include <stdio.h>
 2 
 3 int main(){
 4     int k;
 5     double x,psix;
 6     for(x=0;x<=2.000;x+=0.001){
 7         psix=0;
 8         for(k=1;k<10000;k++)
 9             psix += 1.0 / (k*(k+1)*(k+x));
10         psix = psix*(1-x) + (1-x)/(2*10000*10000) + 1.0;
11         printf("%5.3f %16.12f\n",x,psix);
12     }
13     return 0;
14 }

 




  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved