题解 1128: C语言训练-排序问题<1>循环做法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main(void)
{
int a, b, c, d;
scanf("%d %d %d %d", &a, &b,……
C语言训练-排序问题<1>直接sort
摘要:解题思路:直接使用sort。注意事项:1.使用sort函数,需要头文件#include<algorithm>; 2.sort函数能直接实现数组元素从小到大排序; ……
吾乃元始天尊!!!1128: C语言训练-排序问题<1>
摘要:```cpp
#include
using namespace std;
int main()
{
int a[4];
for(int i=0;i……
排序问题<1>(sort偷懒)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
#include<algorithm>
int main()
{
int……
C语言训练-排序问题<1>
摘要: #include
using namespace std;
int main()
{
int a[5];
for(int i=0;i>a[……
1128: C语言训练-排序问题<1>
摘要:```cpp
#include
using namespace std;
int main()
{
int a[4];
for(int i=0;i>a[i];
f……
题解 1128: C语言训练-排序问题<1>(C-从小到大)
摘要:解题思路:将数据存入数组a中,将数组a元素从大到小存入数组b,逆序输出数组b。参考代码:#include<stdio.h>
int main(void){
int a[4];
int b……