筛排处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, j, x, n, min, count; int num[100]; while (sc…… 题解列表 2017年12月01日 0 点赞 0 评论 858 浏览 评分:6.0
筛排处理 (C++代码) 摘要:解题思路:可以用set来写 set自带去重和排序功能注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2018年04月01日 0 点赞 0 评论 693 浏览 评分:0.0
筛排处理 (C++代码) 摘要:解题思路: 利用C++的STL中的set进行去重和排序注意事项: 输出两个空行#include "iostream" #include "algorithm" #include "set" us…… 题解列表 2018年07月31日 1 点赞 0 评论 669 浏览 评分:0.0
筛排处理 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<algorithm> using namespace std; cons…… 题解列表 2018年06月02日 0 点赞 0 评论 674 浏览 评分:0.0
筛排处理 (C语言代码) 摘要:#include <stdio.h> #define MAX 100 int main() { int n, i, j, num[MAX], num2[MAX], n2, temp; …… 题解列表 2017年10月27日 0 点赞 0 评论 948 浏览 评分:0.0
筛排处理 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int f(int a,int b) { return a<b; }…… 题解列表 2018年12月09日 0 点赞 0 评论 330 浏览 评分:0.0
编写题解 1247: 筛排处理 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>void rank(int arr[], int n);int dele…… 题解列表 2022年02月13日 0 点赞 0 评论 121 浏览 评分:0.0
筛排处理 (C语言代码) 摘要:解题思路:大脑下线了凑活着看看吧注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>#include<stdlib.h>int a…… 题解列表 2019年04月15日 0 点赞 0 评论 379 浏览 评分:0.0
筛排处理 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[1001]={0},b[1001]={0},i,j,k,temp; while(scanf("%…… 题解列表 2018年01月11日 0 点赞 0 评论 883 浏览 评分:0.0
筛排处理 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,j,t,count,N; int a[100]; while(scanf("%d",&N)&&N) …… 题解列表 2018年02月24日 0 点赞 0 评论 823 浏览 评分:0.0