【正文】
23242526262727282929303131323233333435213536363738383940404141424243143444445454647474824004849501511515252531535455555758596061626363646565666768697172737374747576777879798081828485878788898991919292939495969799101102附錄二:includeincludeincludemain(){ char item2[30],item3[30],item6[30],item7[30],item8[30],item9[30],item10[30],item11[30],item14[30]。 long int item1,item4,item5,item12,item13。 FILE *fileFirst,*file1,*fileSecond,*file2。 fileFirst=fopen(,r)。 if(fileFirst==NULL) { printf(\nThe file was not successfully opened.)。 printf(\nPlease check that the file currently exists.\n)。 exit(1)。 } printf(\nThe file has been successfully opened for reading.\n)。 file1=fileFirst。 fileSecond=fopen(,w)。 if(fileSecond==NULL) { printf(\nThe file was not successfully opened.)。 printf(\nPlease check that the file currently exists.\n)。 exit(1)。 } printf(\nThe file has been successfully opened for output.\n)。 file2=fileSecond。while(fscanf(file1,%d %s %s %d %d %s %s %s %s %s %s %d %d %s,amp。item1,amp。item2,amp。item3,amp。item4,amp。item5,amp。item6,amp。item7,amp。item8,amp。item9,amp。item10,amp。item11,amp。item12,amp。item13,amp。item14)!=EOF){ if(item1260) fprintf(file2,%s%c%s%c%d%c%d\n,item2,9,item3,9,item12,9,item13)。}fclose(file1)。fclose(file2)。printf(COPY COMPELETED!)。 getchar()。}31