SORT 14 #include<stdio.h> int main() { int a[1001]; int n,i,j,t,swap,temp,k,m,s,r,x=1,ss=1,c=1,f=0; scanf("%d", &t); while(t--) { swap=0; scanf("%d %d %d", &m,&s,&n); for(i=0; i<n; i++){ scanf("%d", &a[i]); } for(i=0; i<n-1; i++){ //temp=i; for(j=0;j<n-i-1;j++){ //temp=a[j]; if(a[j]>a[j+1]){ temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; ...
Comments
Post a Comment