码迷,mamicode.com
首页 > 其他好文 > 详细

随机数生成

时间:2018-08-15 14:52:15      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:color   nbsp   and   scanf   amp   不同   style   namespace   class   

留下复习

#include<cstdio>
#include<cstdlib>
#include<ctime>

using namespace std;

int main(){
    int l,r,p1.p2;
    scanf("%d%d",&l,&r);
    // 1)rand生成在int内的数
    p1=rand();printf("%d\n",p1);
    // 2)rand生成(l,r) 范围内的数
    p2=rand()%(r-l+1)+l;printf("%d\n",p2);
    // 3)srand利用不同种子
    srand(time(NULL));
    //srand(20011103);
    p3=rand()%(r-l+1)+l;printf("%d\n",p3);       
    return 0;
}

 

随机数生成

标签:color   nbsp   and   scanf   amp   不同   style   namespace   class   

原文地址:https://www.cnblogs.com/asdic/p/9481101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!