#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<assert.h> int main() { int x = 0; int ret = 0; int binsearch(int *arr, int x); int str[3][3] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; scanf("%d", &x); ret = binsearch(str, x); if (ret == 1) printf("ok\n"); if (ret == 0) printf("no\n"); system("pause"); return 0; } int binsearch(int *arr, int x) { assert(arr); while (*arr) { if (*arr == x) return 1; else arr++; } return 0; }
判断一个数是否在二维数组中
原创
©著作权归作者所有:来自51CTO博客作者零点时光的原创作品,请联系作者获取转载授权,否则将追究法律责任
下一篇:模拟实现strstr函数
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章