小白题解 2901: 查找特定的值 摘要:解题思路:原本以为使用字符串可以解决了呢,没想到现实给我了一个大逼斗 无奈至极注意事项:参考代码:n = input()li = input().split()s = input()if s in l…… 题解列表 2022年09月25日 0 点赞 0 评论 463 浏览 评分:0.0
编写题解 2901: 查找特定的值 摘要:解题思路:输入-判断-输出注意事项:第一次出现字符参考代码:#include<stdio.h>int main(){ int n,x,i; scanf("%d\n",&n); int…… 题解列表 2022年10月21日 0 点赞 1 评论 826 浏览 评分:8.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
2901: 查找特定的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d",&n);//输入 int arr[10001]={0}…… 题解列表 2022年11月17日 0 点赞 0 评论 107 浏览 评分:0.0
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
查找特定的值 (Java 代码) 摘要:import java.util.ArrayList; import java.util.Scanner; public class Main { public static void…… 题解列表 2022年12月07日 0 点赞 0 评论 204 浏览 评分:9.9
查找特定的值(c语言版) 摘要: #include int main() { int a[11000]; int n; int i; int yes; int yes_1=-1; sca…… 题解列表 2022年12月23日 0 点赞 0 评论 268 浏览 评分:9.9
2901:查找特定的值——遍历 摘要:解题思路: 给了n个数,需要从中找值为x的数的下标。 因此可以设定一个数组a,用来存放这n个数。 然后遍历数组a,寻找某个下标k,使得 a[k…… 题解列表 2023年01月09日 0 点赞 0 评论 123 浏览 评分:0.0
查找特定的值(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, x, i, z; int a[10000]; n = x = z = 0; …… 题解列表 2023年02月16日 0 点赞 0 评论 199 浏览 评分:9.9
太难了真是要自习看题目 摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))x=int(input())for i in range(n): if …… 题解列表 2023年05月05日 0 点赞 0 评论 113 浏览 评分:0.0