标签:style class blog c code tar
#include"stdio.h" void swap(int *a,int *b){ int temp; temp=*a; *a=*b; *b=temp; } void maxSort(int a[],int n){ int i,j; for(i=0;i<n;i++) for(j=i;j<n;j++){ int temp; if(a[i]<a[j]) swap(&a[i],&a[j]); } } void minSort(int a[],int n){ int i,j; for(i=0;i<n;i++) for(j=i;j<n;j++){ if(a[i]>a[j]) swap(&a[i],&a[j]); } } int main() { int T; int i,j; int n; int sum[1000]; scanf("%d",&T); for(i=0;i<T;i++) { sum[i]=0; scanf("%d",&n); int a[2][10]; for(j=0;j<n;j++) scanf("%d",&a[0][j]); for(j=0;j<n;j++) scanf("%d",&a[1][j]); maxSort(a[0],n); minSort(a[1],n); for(j=0;j<n;j++) sum[i]+=(a[0][j]*a[1][j]); } for(i=0;i<T;i++) printf("%d\n",sum[i]); return 0; }
标签:style class blog c code tar
原文地址:http://www.cnblogs.com/lgy123/p/3749950.html