| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80814 | sh25_zhangjiajia | 查找数 | C++ | Compile Error | 0 MS | 0 KB | 330 | 2026-01-04 15:32:31 |
#include <bits/stdc++.h> using namespace std; int main( ) { int n; int s[n]; int m; cin>>n; for(int i=0;i<n;i++){ cin>>s[i]; } cin>>m; for(int i=0;i<n;i)++{ if(s[i]==m){ cout<<i+1; return 0; } } cout<<"no"; return 0; }