字典翻译 问答 其它 按要求编写C程序,按下面的公式计算pi的近似值
问题标题:
按要求编写C程序,按下面的公式计算pi的近似值
问题描述:

按要求编写C程序,按下面的公式计算pi的近似值

孙丈福回答:
  手打的,最好自己再上机敲下,   #include<stdio.h>   #include<math.h>   int fun(int n)   {   int s=1;   for(int i=1;i<=n;i++) { s*=n; }   return s;   }   int main()   {   double s=0;   for(int i=1;; i++)   {   double fs=1.0/fun(i);   s+=fs;   if(fs<1e-6) break;   }   printf("%fn", sqrt(6*s));   return 0;   }
宁小红回答:
  一是木有C的环境,二是不会C的语法,所以麻烦能给个直接拷贝当答案的代码,确保代码没问题
孙丈福回答:
  本来就没问题。
点击显示
其它推荐
热门其它推荐
  • 其它