题解 2917: 奇数单增序列

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

奇数单增序列

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string.h> using namespace std; int main() {     in……

奇数单增序列(python超简单方法)

摘要:解题思路:灵活使用列表推导式和sorted函数,python来写这道题不要太简单!四行代码直接解决参考代码:N = int(input())nums = sorted(map(int, input()……

Devc++来写奇数单增序列

摘要:解题思路:注意事项:参考代码:#include <stdio.h>void sort(int odds[],int length);int main(){int N=0;int i=0;scanf("……

2917: 奇数单增序列

摘要:```cpp #include using namespace std; int main() { int n,a[501],k; cin>>n; for(int……

冒泡排序c++

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){     int n=0;     in……