随机函数问题~

#include<stdio.h>#include<conio.h>#include<time.h>#include<iostream>usingnamespacestd... #include <stdio.h>
#include <conio.h>
#include <time.h>
#include <iostream>
using namespace std;
int main()
{
int i,j;
int a[100]={0};
int b[100]={0};

srand((unsigned) time(NULL));
for(i = 0; i < 5; i++)
{
a[i]=rand() % 5;
printf("%2d",a[i]);
}
printf("\n");
for(i= 0; i < 5; i++)
{
b[i]=rand() % 5;
printf("%2d",b[i]);
}

getch();
}

怎样使两个random函数上下相等时 如(4,4)(2,2)
和重复出现的(4,0),(0,4)发生时重新运行
展开
 我来答
caseyou4ever
推荐于2016-02-11 · TA获得超过456个赞
知道小有建树答主
回答量:583
采纳率:0%
帮助的人:305万
展开全部

#include <stdio.h>

#include <conio.h>

#include <time.h>

#include <iostream>

using namespace std;

int main()

{

 int i, j;

 int a[100] = {

  0

 };

 int b[100] = {

  0

 };

 srand((unsigned)time(NULL));

 for (i = 0; i < 5; i++) {

  a[i] = rand() % 5;

  printf("%2d", a[i]);

 }

 printf("\n");

 i = 0;

 bool b1;

 while (i < 5) {

  b[i] = rand() % 5;

  if (a[i] != b[i]) {

   b1 = false;

   for (int j = 0; j < i - 1; j++) {

    if (((a[i] == a[j]) && (b[i] == b[j])) ||

     ((a[i] == b[j]) && (b[i] == a[j]))) // 有多余括号,易读

     b1 = true;

   }

   if (!b1) {

    printf("%2d", b[i]);

    i++;

   }

  }

 }

 getch();

追问
大哥 你太帅气了  谢谢你啊~~ 好多问题基本都没人回答的 真心感谢
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式