Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
39216 Songgy_King 查找特定的值 C++ 通过 0 MS 244 KB 349 2024-01-30 20:55:17

Tests(1/1):


#include<iostream> using namespace std; int main(){ int n=0; int x=0; bool out=0; cin>>n; int number[n]; //输入元素 for(int i=0;i<n;i++){ cin>>number[i]; } cin>>x; for(int i=0;i<n;i++){ if(number[i]==x){ cout<<i+1; out=1; break; } } if(out==0){ cout<<"-1"; } return 0; }


测评信息: