标题:用概率法求PI
只看楼主
ehszt
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:40
帖 子:1728
专家分:3216
注 册:2015-12-2
结帖率:100%
 问题点数:0 回复次数:0 
用概率法求PI
觉得思路很新颖,就搬上来了。
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
main()
{
    double x,y;
    srand(time(0));
    int n,count=0;
    printf("请输入总数:");
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {
        x=(double)rand()/RAND_MAX;
        y=(double)rand()/RAND_MAX;
        if(x*x+y*y<=1)
        {
            count++;
        }
    }
    printf("PI的数值是:%lf",4.0*count/n);
}

[此贴子已经被作者于2018-9-23 14:53编辑过]

搜索更多相关主题的帖子: 概率 include double rand count 
2018-09-22 18:02



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-489945-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.647976 second(s), 9 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved