这篇文章主要介绍了C语言查找数组里数字重复次数的方法,涉及C语言针对数组的遍历与判断技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了C语言查找数组里数字重复次数的方法。分享给大家供大家参考。具体如下:
- #include "stdafx.h"
- #include<stdio.h>
- #include <iostream>
- using namespace std;
- int main()
- {
- int myarray[10]={4,3,7,4,8,7,9,4,3,6};
- printf("输入你想查询的数:");
- int number=0;
- cin>>number;
- int count=0;
- for(int i=0;i<sizeof(myarray);i++)
- {
- if(number==myarray[i])
- {
- count++;
- }
- }
- if(count!=0)
- {
- printf("共出现了 %d 次",count);
- }
- else
- {
- printf("一次都没出现!");
- }
- system("pause");
- return 0;
- }
希望本文所述对大家的C语言程序设计有所帮助。
新闻热点
疑难解答