当前位置: 代码迷 >> C语言 >> C\C++求助,朋友来帮下忙
  详细解决方案

C\C++求助,朋友来帮下忙

热度:129   发布时间:2008-02-24 16:44:23.0
C\C++求助,朋友来帮下忙
请问下朋友们,C\C++的随机函数是什么啊?
谢谢啦
搜索更多相关的解决方案: 朋友  

----------------解决方案--------------------------------------------------------
用baidu很容易搜索到结果:
举个例子
程序代码:
#include   <time.h>   //   or   <ctime>   in   C++   
srand(time(NULL)); //用时间做种子
printf("生成一个随机数: %d \n",rand()); //


[[it] 本帖最后由 lonmaor 于 2008-2-24 16:53 编辑 [/it]]
----------------解决方案--------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>

int i = rand() % 1000 + 1;  // rand 就是随即数函数
----------------解决方案--------------------------------------------------------
  相关解决方案