Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
58071 littletwleve 查找特定的值 C++ 通过 0 MS 248 KB 293 2024-12-03 15:31:41

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int a[10010]; int main(){ int n,x; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; } cin>>x; bool flag=true; for(int i=1;i<=n;i++){ if(a[i]==x){ cout<<i; flag=false; break; } } if(flag) cout<<"-1"; return 0; }


测评信息: