3_29.cpp
来自「C++语言程序设计案例教程,郑莉编的书」· C++ 代码 · 共 13 行
CPP
13 行
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
void main(void)
{ cout << "RAND_MAX=" << RAND_MAX << endl;
cout<<"产生10个 0 到 99的随机数如下:\n";
for(int i=0; i<10; i++) cout<<(rand() % 100)<<' '; //求除以100的余数
cout << "\n使用srand:\n";
srand( (unsigned)time( NULL ) );
for( i = 0; i < 10;i++ ) cout<<rand() <<' ';
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?