题解 1169: 绝对值排序

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

筛选

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

摘要:解题思路:用b数组保存数组a的绝对值,               找出最大值后,进行交换.             注意事项:参考代码:#include <stdio.h> #include <m……

绝对值排序(水题)

摘要:```c #include #include int main(){ int n,a[101],i,j,t; while(~scanf("%d",&n)&&n!=0){//这里的结尾……

绝对值排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>#include<string.h>#include<ctype.h……