- 与指定数字相同的数的个数
???
- 2023-10-24 20:33:28 @
#include <bits/stdc++.h>
using namespace std;
int n[110];
int cnt;
int main()
{
int n;
cin >>n;
int j;
cin >>j;
for(int i=0;i<n;i++)
{
cin >> n[i];
if (n[i]==j) cnt++;
}
cout << cnt;
return 0;
}
1 comments
-
Csvoner LV 3 SU @ 2023-10-31 21:09:44
读入的数据顺序错了~
输入包含三行:
第一行为N,表示整数序列的长度(N ≤ 100);
第二行为N个整数,整数之间以一个空格分开;
第三行包含一个整数,为指定的数字m。
- 1
Information
- ID
- 590
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 5
- Tags
- (None)
- # Submissions
- 171
- Accepted
- 72
- Uploaded By