首页 > 编程 > C > 正文

C语言查找数组里数字重复次数的方法

2020-01-26 15:02:05
字体:
来源:转载
供稿:网友

本文实例讲述了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语言程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选