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

【随机数】生成随机数模板

时间:2014-12-26 13:05:28      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:acm

写个对拍程序的时候生成随机数的模板留在这儿

#include <cstdio>
#include <ctime>
#include <cstring>
#include <cstdlib>
#define Int(x, y) (rand() % (y-x+1) + x)
int x;

int main()
{
    freopen("debug.in", "w", stdout);
    srand((int)time(0));
    x = Int(1, 100);
    return 0;
}


【随机数】生成随机数模板

标签:acm

原文地址:http://blog.csdn.net/j_sure/article/details/42169633

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