摘要:
#include #include void swap(int *a,int *b){ int t; t=*a; *a=*b; *b=t;}int main(){ int n,i,j,k; int a[10][10],b[10]; while(scanf("... 阅读全文
摘要:
#include #include #include typedef struct IP{ int a; int b; int c; int d;}IP;typedef struct S{ int len; IP source; IP destination... 阅读全文