判断是偶数赋值为-1 摘要:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static void main…… 题解列表 2024年03月13日 0 点赞 0 评论 58 浏览 评分:0.0
奇数单增序列C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,p,t; scanf("%d",&N); int a[N+1],b[N+1],i,…… 题解列表 2024年02月26日 0 点赞 0 评论 117 浏览 评分:0.0
题解 2917: 奇数单增序列(看过来) 摘要:```c #include #include int main() { int N, a[501] = { 0 }, b[500] = { 0 }; int flag = 0; s…… 题解列表 2023年12月16日 0 点赞 0 评论 163 浏览 评分:9.9
奇数单增序列(python超简单方法) 摘要:解题思路:灵活使用列表推导式和sorted函数,python来写这道题不要太简单!四行代码直接解决参考代码:N = int(input())nums = sorted(map(int, input()…… 题解列表 2023年12月14日 0 点赞 0 评论 71 浏览 评分:0.0
奇数单增序列(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,arr[501]; int count=0,k=0; scanf("%d",&n)…… 题解列表 2023年11月28日 0 点赞 0 评论 60 浏览 评分:0.0
题目2917:奇数单增排序,C语言 摘要:解题思路:a[]是原数组,b[]奇数数组注意事项:参考代码:#include<stdio.h>void input(int a[],int n); 输入数据。int f(int a[],int b…… 题解列表 2023年11月10日 0 点赞 0 评论 239 浏览 评分:9.9
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){ int n=0; in…… 题解列表 2023年11月09日 0 点赞 2 评论 120 浏览 评分:9.9
c++ STL解法,用上vector容器 摘要:#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { int…… 题解列表 2023年11月05日 0 点赞 0 评论 139 浏览 评分:8.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[1005];int main(){ int n; c…… 题解列表 2023年10月21日 0 点赞 0 评论 47 浏览 评分:0.0
奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); int a[n]; int b; in…… 题解列表 2023年10月09日 0 点赞 0 评论 49 浏览 评分:0.0