判断数组中第二个数的大小 摘要: #include //可以先排序然后找第二小 就是数组中第二个数字 int main() { int n; scanf("%d…… 题解列表 2024年03月26日 0 点赞 0 评论 127 浏览 评分:0.0
c语言 冒泡排序解决 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); int a=0; …… 题解列表 2024年03月10日 0 点赞 0 评论 74 浏览 评分:9.9
倒数第二 C++ stl prev 摘要:## STL prev > std::prev`函数来获取容器中倒数第n个元素的迭代器。`std::prev`函数接受两个参数:迭代器和要向前移动的步数 ```c++ #include …… 题解列表 2023年08月09日 0 点赞 0 评论 180 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c, n, i; scanf("%d", &c); while (c--) { …… 题解列表 2023年06月26日 0 点赞 0 评论 79 浏览 评分:0.0
倒数第二——python 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): m = int(input()) L = list(map(int,input().sp…… 题解列表 2023年04月07日 0 点赞 0 评论 85 浏览 评分:0.0
1395: 倒数第二 摘要:解题思路:注意事项:参考代码:n = int(input())while n != 0: try: x = int(input()) a = list(map(int…… 题解列表 2023年01月19日 0 点赞 0 评论 120 浏览 评分:9.9
编写题解 1395: 倒数第二 Python 摘要:解题思路:sort函数注意事项:很简单好吧,不需要注意参考代码:C=int(input())while C!=0: n=int(input()) if n>=2 and n<=10: …… 题解列表 2022年11月14日 0 点赞 9 评论 184 浏览 评分:8.4
python 倒数第二 摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n): i=int(input()) a=list(map(int,input().split())…… 题解列表 2022年11月11日 0 点赞 8 评论 121 浏览 评分:8.4
1395: 倒数第二(STL multiset) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<set>using namespace std;int main(void){ int i0,i,temp;…… 题解列表 2022年08月23日 0 点赞 0 评论 311 浏览 评分:0.0
倒数第二-题解(C语言代码) 摘要: #include "stdio.h" int main(){ int c; scanf("%d",&c); while(c--){ …… 题解列表 2020年04月22日 0 点赞 0 评论 405 浏览 评分:0.0