1395: 倒数第二 摘要:解题思路:注意事项:参考代码:n = int(input())while n != 0: try: x = int(input()) a = list(map(int…… 题解列表 2023年01月19日 0 点赞 0 评论 120 浏览 评分:9.9
倒数第二——python 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): m = int(input()) L = list(map(int,input().sp…… 题解列表 2023年04月07日 0 点赞 0 评论 86 浏览 评分: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
倒数第二 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 n,m; scanf("%d%d",&n,&m); int a=0; …… 题解列表 2024年03月10日 0 点赞 0 评论 74 浏览 评分:9.9
判断数组中第二个数的大小 摘要: #include //可以先排序然后找第二小 就是数组中第二个数字 int main() { int n; scanf("%d…… 题解列表 2024年03月26日 0 点赞 0 评论 127 浏览 评分:0.0