c/c++//随机数

1.随机数都只能是一次性的,如果你第二次运行的时候输出结果仍和第一次一样。这与srand()函数有关。

#include<iostream>
using namespace std;
#include<stdio.h>
#include<stdlib.h>
#include<ctime>
void main()
{
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
	for (int i = 0; i < 10; i++)
		cout << rand() << "\t";
	cout << endl;
}

2.srand(time(NULL));
之后调用rand()即可得到0 ~ 32757范围的随机数
包含头文件stdlib.h和time.h 或 cstdlib和ctime
#include <stdlib.h>
#include <time.h>

#include
#include
用下列公式即可得到指定范围[m,n]的随机数:
r = rand()%(n - m + 1) + m;
注意:n - m 的绝对值不能超过32767
网上复制的,懒得打字了。。。。

#include<iostream>
using namespace std;
#include<stdio.h>
#include<stdlib.h>
#include<ctime>
void main()
{
	for (int i = 0; i < 5; i++)
		cout << rand()%10 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 100 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 1000 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 10000 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 100000 << "\t";
	cout << endl;

}
#include<iostream>
using namespace std;
#include<stdio.h>
#include<stdlib.h>
#include<ctime>
void main()
{
	srand((int)time(0));//生成的随机数都只能是一次性的,如果你第二次运行的时候输出结果仍和第一次一样。这与srand()函数有关
	for (int i = 0; i < 5; i++)
		cout << rand()%10 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 100 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 1000 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 10000 << "\t";
	cout << endl;
	for (int i = 0; i < 5; i++)
		cout << rand() % 100000 << "\t";
	cout << endl;

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值