标签:
输出一个整数序列中与指定数字相同的数的个数。
3 2 3 2 2
2
#include<stdio.h> int main() { int a=0,b=0,c=0; int shu[100]={0}; scanf("%d",&a); for (int i=0;i<=a-1;i++) { scanf("%d",&shu[i]); } scanf("%d",&b); for (int j=0;j<=a-1;j++) { if (shu[j]==b) c++; else continue; } printf ("%d",c); return 0; }
标签:
原文地址:http://www.cnblogs.com/fripSide-satoshi/p/5409032.html