查找特定的值(C语言版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,x,k; int flag=0; int arr[10001]; scanf…… 题解列表 2023年11月27日 0 点赞 0 评论 67 浏览 评分:0.0
小白题解 2901: 查找特定的值 摘要:解题思路:原本以为使用字符串可以解决了呢,没想到现实给我了一个大逼斗 无奈至极注意事项:参考代码:n = input()li = input().split()s = input()if s in l…… 题解列表 2022年09月25日 0 点赞 0 评论 462 浏览 评分:0.0
查找特定的值 摘要:解题思路:首先通过scanf获取数据,接着对给定的一串数据,通过数组记录,开始获取的数据即为数组长度,再由这个数组长度来声明数组,并通过循环遍历给数据赋值,至此已经获得了一串代找数据,然后先给一共变量…… 题解列表 2023年10月14日 0 点赞 0 评论 96 浏览 评分: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: 查找特定的值 摘要: #include using namespace std; int c,b,d,sum=1; int a[200000]; int main(){ …… 题解列表 2023年12月02日 0 点赞 0 评论 101 浏览 评分: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
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n,* a,i,m; scanf("%d", &n); …… 题解列表 2023年06月03日 0 点赞 0 评论 74 浏览 评分:0.0
全部遍历后再输出-1 摘要:解题思路:注意cout出-1的位置,如果是在if下面,即意味着单次判断无x即直接-1,而实际上应该是全部遍历后再判断。注意事项:参考代码:#include<iostream> using names…… 题解列表 2024年12月10日 0 点赞 0 评论 71 浏览 评分:0.0
查找特定的值C解 摘要:解题思路:注意事项:注意看题参考代码:#include<stdio.h>int main(){ int n,a[10000],i,m,count=0; scanf("%d",&n); …… 题解列表 2024年02月22日 0 点赞 0 评论 89 浏览 评分:0.0
2901: 查找特定的值(C语言) 摘要: #include #include int main() { int n; scanf("%d",&n); int a[n+1]; for(int i=1…… 题解列表 2023年07月24日 0 点赞 0 评论 100 浏览 评分:0.0