Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
20830 | LeoWang | 与指定数字相同的数的个数 | C++ | 通过 | 0 MS | 244 KB | 194 | 2023-06-21 06:47:19 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m,num,h=0; cin>>n>>m; for(int i=1;i<=n;i++){ cin>>num; if(num==m){ h++; } } cout<<h; return 0; }