题解 1169: 绝对值排序

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

筛选

绝对值排序(水题)

摘要:```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……

题解 1169: 绝对值排序

摘要:参考代码:#include<stdio.h>#include<math.h>#define N 100void main(){   int i,j,k,s,t,temp,a[N][N];      f……