您的位置 首页 数字

C++30选7随机选号器程序

a1cpp:定义控制台应用程序的入口点。includestdafxhincludetimehincludestdlibhint_tmain(intargc,_TC

// a1.cpp : 界说操控台应用程序的进口点。

//
#include “stdafx.h”
#include “time.h”
#include “stdlib.h”
int _tmain(int argc, _TCHAR* argv[])
{
int arr[]={0,0,0,0,0,0,0};
int tm=time(NULL);
srand(tm);
for(int k=0;k<7;k++)
{
while(1)
{
bool ist=false;
int tem=rand()%31;
for(int i=0;i<7;i++)
{
if(arr[i]==tem)//切断句子
{
ist=true;
}
}
if(ist==false)//经过ist操控了函数的通断
{
arr[k]=tem;
break;
}
}
}
for(int l=0;l<7;l++)
{
printf(“%d “,arr[l]);
}
return 0;
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/zhishi/shuzi/317596.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部