题解 2901: 查找特定的值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2901: 查找特定的值

摘要:```cpp #include #include using namespace std; int main() { int m,n,a[10000],i=0; mems……

编写题解 2901: 查找特定的值

摘要:解题思路:输入-判断-输出注意事项:第一次出现字符参考代码:#include<stdio.h>int main(){    int n,x,i;    scanf("%d\n",&n);    int……

2901: 查找特定的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>typedef long long ll;const int N=1e7;ll a[N];using namespace s……

2901: 查找特定的值

摘要:```#include using namespace std; int n,x,N[100000]; int main(){ cin>>n; for( int i=1;i>N[i]; ……

查找特定的值(C语言)

摘要:解题思路:    循环查找数组里的值,一旦找到立马跳出循环注意事项:    注意输出-1参考代码:#include<stdio.h> int main() { int a,n; scanf……

查找特定的值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[10000]={0}; int i=0; int m; scanf("%d",&n);……

太难了真是要自习看题目

摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))x=int(input())for i in range(n):    if ……

2901: 查找特定的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;ll a[N……

2901: 查找特定的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;ll a[N……