题解 1169: 绝对值排序

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

筛选

1169: 绝对值排序(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<math.h> //定义结构体指针 typedef struct or……

题解 1169: 绝对值排序

摘要:#include<stdio.h> #include<math.h> int main() {     int i,j,t,n;     while(scanf("%d",&n)!=EO……

绝对值排序-C语言代码

摘要:解题思路:用动态内存分配。注意事项:循环条件要用scanf("%d",&n)!=EOF。参考代码:#include<stdio.h>#include<malloc.h>#include <stdlib……

绝对值排序

摘要:解题思路:冒泡排序注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){    int n;    whi……

简单易懂的方法

摘要:```java import java.util.Scanner; public class 测试 { public static void main(String[] args) { ……

绝对值排序 用C语言基础的方法

摘要:通过一开始的输入控制为有数据的范围内,再进行循环得到答案;参考代码:#include<stdio.h> #include<math.h> #include<stdlib.h> int main(……

1169: 绝对值排序

摘要:解题思路:把负数转换成正整数代码0减负数,在做冒泡排序。注意事项:排序时注意是从大到小哦!参考代码:#include<iostream> using namespace std; int a[10……

绝对值排序-题解(Python代码)

摘要:用sorted()函数将绝对值从大到小排序,返回一个排序后的新列表 ```python import math while True: lit=list(map(int,input()……