码迷,mamicode.com
首页 > 其他好文 > 详细

查找数据是否存在

时间:2018-06-11 23:40:35      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:lib   can   sys   数据   time_t   void   ==   and   scanf   

#include<stdio.h>
#include<stdlib.h>
#include<time.h>

void main()
{
time_t ts;
srand((unsigned int)time(&ts));
int a[10];
for (int i = 0; i < 10; i++)
{
a[10] = rand() % 100;
printf("\n%d,%x", a[10], &a[10]);

}
int num;
scanf("%d",&num);
int flag=0;
for (int i = 0; i < 10; i++)
{
if (num == a[i])
{
flag = 1;
break;
}
}
if (flag == 1)
{
printf("找到");
}
else
{
printf("找不到");
}

system("pause");
}

查找数据是否存在

标签:lib   can   sys   数据   time_t   void   ==   and   scanf   

原文地址:https://www.cnblogs.com/minTTremor/p/9170442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!