2901: 查找特定的值 摘要:```cpp #include #include using namespace std; int main() { int m,n,a[10000],i=0; mems…… 题解列表 2022年11月30日 0 点赞 0 评论 214 浏览 评分:8.0
编写题解 2901: 查找特定的值 摘要:解题思路:输入-判断-输出注意事项:第一次出现字符参考代码:#include<stdio.h>int main(){ int n,x,i; scanf("%d\n",&n); int…… 题解列表 2022年10月21日 0 点赞 1 评论 824 浏览 评分:8.0
2901: 查找特定的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>typedef long long ll;const int N=1e7;ll a[N];using namespace s…… 题解列表 2024年04月20日 0 点赞 0 评论 89 浏览 评分:2.0
2901: 查找特定的值 摘要:```#include using namespace std; int n,x,N[100000]; int main(){ cin>>n; for( int i=1;i>N[i]; …… 题解列表 2023年12月01日 0 点赞 0 评论 104 浏览 评分:0.0
查找特定的值(C语言) 摘要:解题思路: 循环查找数组里的值,一旦找到立马跳出循环注意事项: 注意输出-1参考代码:#include<stdio.h> int main() { int a,n; scanf…… 题解列表 2023年11月11日 0 点赞 0 评论 74 浏览 评分:0.0
查找特定的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[10000]={0}; int i=0; int m; scanf("%d",&n);…… 题解列表 2022年10月26日 0 点赞 0 评论 168 浏览 评分:0.0
太难了真是要自习看题目 摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))x=int(input())for i in range(n): if …… 题解列表 2023年05月05日 0 点赞 0 评论 112 浏览 评分:0.0
2901: 查找特定的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;ll a[N…… 题解列表 2024年04月21日 0 点赞 0 评论 98 浏览 评分:0.0
2901: 查找特定的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e7;ll a[N…… 题解列表 2024年04月21日 0 点赞 0 评论 96 浏览 评分:0.0
编写题解 2901: 查找特定的值 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2901: 查找特定的值 import java.util.Scanner; public class t_2901 {…… 题解列表 2024年01月31日 1 点赞 0 评论 87 浏览 评分:0.0