题解 2917: 奇数单增序列(看过来) 摘要:```c #include #include int main() { int N, a[501] = { 0 }, b[500] = { 0 }; int flag = 0; s…… 题解列表 2023年12月16日 0 点赞 0 评论 254 浏览 评分:9.9
奇数单增序列(java) 摘要:解题思路:注意事项:参考代码:package Fifteen;import java.util.Scanner;public class 奇数单增序列 { public static void …… 题解列表 2023年05月21日 0 点赞 0 评论 201 浏览 评分:9.9
题目2917:奇数单增排序,C语言 摘要:解题思路:a[]是原数组,b[]奇数数组注意事项:参考代码:#include<stdio.h>void input(int a[],int n); 输入数据。int f(int a[],int b…… 题解列表 2023年11月10日 0 点赞 0 评论 281 浏览 评分:9.9
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){ int n=0; in…… 题解列表 2023年11月09日 0 点赞 2 评论 171 浏览 评分:9.9
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int b[10000]; int c[10000]; int mai…… 题解列表 2023年09月20日 0 点赞 0 评论 189 浏览 评分:9.9
无聊的星期六 摘要:size=int(input()) num=list(map(int,(input().split()))) num.sort() print(",".join(str(i) for i in …… 题解列表 2024年05月25日 0 点赞 0 评论 232 浏览 评分:10.0
8行:万花丛中过,片叶不沾身 摘要:```` li=[] n=int(input()) l=list(map(int,input().split())) for s in l: if s%2==1: …… 题解列表 2024年08月01日 0 点赞 0 评论 191 浏览 评分:10.0