C++博客 :: 首页 :: 新随笔 ::  ::  :: 管理

随机数发生器

Posted on 2010-07-30 21:33 Kevin_Zhang 阅读(92) 评论(0)  编辑 收藏 引用
#include"iostream"
#include
"stdio.h"
#include
"stdlib.h"
#include
"time.h"
using namespace std;
int N;

int GetRand()
{
 srand(time(NULL)) ;
 
int n = rand()%(N-1)+1;
 
 
return n ;
}
int main()
{
while(scanf("%d",&N)==1)
 printf(
"%d\n", GetRand());
 
return 0 ;
}


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   博问   Chat2DB   管理