输出1-100之间的随机数,控制输出格式,每行10个(注释有详解)

#include
#include
#include
#include
using namespace std;

int main()
{
	srand(unsigned(time(NULL)));//解除随机数限制 ,用到 ctime与 cstdlib头文件 
	for(int i=1; i<=100; i++)
	{
		cout<

 输出格式如下:

输出1-100之间的随机数,控制输出格式,每行10个(注释有详解)_第1张图片

你可能感兴趣的:(c++,随机数,c++)