题解 1169: 绝对值排序

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

筛选

绝对值排序优质题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){   int n,i,j,k=0,a[105];   while(scanf("%……

绝对值排序---抽象JAVA

摘要:解题思路:TreeSet去重,排序Comparator 绝对值排序注意事项:无参考代码:import java.util.*;public class Main { public static voi……

绝对值排序

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; bool cmp(int a, int b);int main(){    int……

绝对值排序 代码少

摘要:while True:    try:        print(&#39; &#39;.join(sorted(input().split()[1:],key=lambda x:abs(int(x)……

【绝对值排序】 (C语言代码)

摘要:解题思路:数值大小按平方来算,用 ‘选择排序 ’‘  来排序 注意事项:参考代码:#include<stdio.h>void sort(int a[],int n){ //进行排序 并打印出来 int……

python解决绝对值排序

摘要:注意事项:注意题目要求一行代码输入参考代码:while 1:     a = list(eval((input()+&#39; &#39;).replace(&#39; &#39;, &#39;,&……

python 容易理解

摘要:解题思路:注意事项:参考代码:ls =list(map(int,input().split()))while ls[0] != 0:    lt = ls[1:]    b=[]    for i i……

绝对值排序(python)

摘要:解题思路:注意事项:参考代码:while True:    nums = list(map(int, input().split()))    n = nums[0]    if n == 0:   ……