奇数单曾序列,用一个数组解决 摘要:解题思路:使用的是选择排序注意事项:在打印逗号时,利用状态标记,符合奇数,改变状态,打印逗号参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2024年11月12日 0 点赞 0 评论 75 浏览 评分:0.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 评论 71 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3;ll a…… 题解列表 2024年07月20日 0 点赞 0 评论 147 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;ll a[…… 题解列表 2024年07月15日 0 点赞 0 评论 75 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){ int n=0; in…… 题解列表 2024年07月15日 0 点赞 0 评论 64 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:```cpp #include using namespace std; typedef long long ll; ll a[503],cnt; int main() { l…… 题解列表 2024年07月15日 0 点赞 0 评论 65 浏览 评分:0.0
题解 2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[504],b[504];int main(){ int n,sum=0…… 题解列表 2024年07月15日 0 点赞 0 评论 76 浏览 评分:0.0
Devc++来写奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void sort(int odds[],int length);int main(){int N=0;int i=0;scanf("…… 题解列表 2024年07月12日 0 点赞 0 评论 134 浏览 评分:6.0
编写题解 2917: 奇数单增序列 摘要:```c #include int main() { int num,nums[500],odd_nums[500],i,j,temp; scanf("%d",&num); f…… 题解列表 2024年05月27日 0 点赞 0 评论 105 浏览 评分: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 评论 150 浏览 评分:0.0