- 问答
除了样例全对了
- 2023-11-2 20:30:51 @
除了样例全对了?
2 comments
-
Csvoner LV 3 SU @ 2024-1-28 15:14:02
你数组不初始化为0,能对一个已经是奇迹了
-
2023-11-4 11:50:00@
#include <bits/stdc++.h> using namespace std; int main() { int a=0,c=0,d=0; cin >> a ; int b[a+10]; for (int i=1;i<=a;i++) { cin >> b[i] ; } cin >> c ; for (int i=1;i<=a;i++) { if (b[i]==c) d+=1; } cout << d ; return 0; }
- 1