你好,怎样用c语言输出一个1到100的随机数

 我来答
珈蓝惜梦qF
2020-01-12 · TA获得超过654个赞
知道答主
回答量:33
采纳率:0%
帮助的人:1.3万
展开全部

源程序如下:

#include "pch.h"

#include <iostream>

#include <time.h>

using namespace std;

int main()

{

 const int n = 10000;

 int number[n] = { NULL };

 srand((unsigned)time(NULL));

 number[0] = rand() % n;      //第一个随机数无需比较

 cout << number[0] << " ";

 for (int i = 1; i < n; i++)     //其余随机数循环产生

 {

  int j = 0;

  number[i] = rand() % n;

  while (1)

  {

   if (number[i] == number[j])   //若有相同则继续循环重新安排随机数

   {

    number[i] = rand() % n;

    j = 0;       //若遇到相同的就从头遍历

    continue;

   }

   if (j == (i - 1))      //若遍历完就跳出

    break;

   j++;

  }

  cout << number[i] << " ";

 }

 cout << endl;

 return 0;

}

程序运行结果:


扩展资料:

其他实现方式:

#include<time.h> //使用 time 函数必须引入 time.h 头文件

#include<stdlib.h>

int main()

{

 srand((int)time(0));

 int rand_num = rand();

 printf("rand_num = %d\n", rand_num);

 return 0;

}

匿名用户
推荐于2017-09-24
展开全部
include <stdio.h>
#include<time.h>
#include<stdlib.h>
main()
{
int i;
srand(time(0));
i=rand()%100+1;/*随机函数*/
printf("%d",i);。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
飘风弓手
2011-12-07 · TA获得超过1306个赞
知道小有建树答主
回答量:353
采纳率:0%
帮助的人:214万
展开全部
#include <stdio.h>
#include<time.h>
#include<stdlib.h>
main()
{
int i;
srand(time(0));
i=rand()%100+1;/*随机函数*/
printf("%d",i);
}
这个一定可以,望楼主采纳!
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
steelsimon
2011-12-07 · TA获得超过133个赞
知道小有建树答主
回答量:143
采纳率:0%
帮助的人:104万
展开全部
//两个函数srand()产生随机数种子,rand产生随机数
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main(void)
{
srand( time(NULL) );
printf( "Random number:%d\n", rand()%100 );

return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
林黛玉又要倒拔垂杨柳
2011-12-07
知道答主
回答量:6
采纳率:0%
帮助的人:8435
展开全部
#include<stdlib.h>
#include<stdio.h>
#include<time.h>
int main(){
srand(time(NULL));
int num;
num=rand();
while(num<1||num>100){
num=rand();
}
printf("%d\n",num);
system("pause");
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式