题解 2901: 查找特定的值

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

筛选

2901: 查找特定的值

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

python--study||O.o

摘要:参考代码: def main():     n = int(input())     arr = [int(x) for x in input().split()]     find = in……

C语言 指针解决问题 练手

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main  ( ){     int n=0 ,x=0 ,record=1 ;     int a[10500]={0} ;  ……

全部遍历后再输出-1

摘要:解题思路:注意cout出-1的位置,如果是在if下面,即意味着单次判断无x即直接-1,而实际上应该是全部遍历后再判断。注意事项:参考代码:#include<iostream> using names……