C/C++教程

男女出生比例程序模拟c++

本文主要是介绍男女出生比例程序模拟c++,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在这里插入图片描述
模拟:男女出生概率相等的情况下,家庭偏爱生男孩
结果:出生率只和出生概率有关,和生娃策略无关

#include <iostream>
#include <ctime>
#include <cstdlib>

using namespace std;

long long male,female,n,t;
const int N=1e7;

int main()
{
	n=N;
	srand( (unsigned)time( NULL ) );
	rand();
	while(n--)
	{
		t=3;
		while(t--)
		{
			int tmp=rand();
			if(tmp%2==0){
				male++;
				break;
			}
			else female++;
		}
	}
	cout<<"male:"<<male<<endl;
	cout<<"female:"<<female<<endl;
	return 0;
} 
这篇关于男女出生比例程序模拟c++的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!