奇数单增序列(java) 摘要:解题思路:注意事项:参考代码:package Fifteen;import java.util.Scanner;public class 奇数单增序列 { public static void …… 题解列表 2023年05月21日 0 点赞 0 评论 150 浏览 评分:9.9
编写题解 2917: 奇数单增序列 (集合sort方法) 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static…… 题解列表 2023年05月22日 0 点赞 0 评论 74 浏览 评分:2.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int main() { …… 题解列表 2023年05月23日 0 点赞 0 评论 60 浏览 评分:0.0
编写题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[1000],b[500];int main(){ int n,i,j=0; scanf("%d",&n); //输入 fo…… 题解列表 2023年06月01日 0 点赞 0 评论 84 浏览 评分:0.0
奇数单增序列 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = n…… 题解列表 2023年06月06日 0 点赞 0 评论 116 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int compare(const void* a, const void* b){ int …… 题解列表 2023年06月12日 0 点赞 0 评论 64 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int b[10000]; int c[10000]; int mai…… 题解列表 2023年09月20日 0 点赞 0 评论 161 浏览 评分:9.9
奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); int a[n]; int b; in…… 题解列表 2023年10月09日 0 点赞 0 评论 50 浏览 评分:0.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
c++ STL解法,用上vector容器 摘要:#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { int…… 题解列表 2023年11月05日 0 点赞 0 评论 139 浏览 评分:8.0