如何讀取兩個文件的數字 做運算? |
尚未結案
|
demo31328
一般會員 發表:2 回覆:2 積分:0 註冊:2011-06-03 發送簡訊給我 |
|
rick060
高階會員 發表:2 回覆:112 積分:217 註冊:2009-11-17 發送簡訊給我 |
//符合你程度的方法 FILE *fd1 = NULL; FILE *fd2 = NULL; int input1[5]; int input2[5]; if( (fd1 = fopen("./1","r")) == NULL ) { perror("fopen failed"); goto EXIT; } if( (fd2 = fopen("./2","r")) == NULL) { perror("fopen failed"); goto EXIT; } fscanf(fd1,"%d %d %d %d %d",&input1[0],&input1[1],&input1[2],&input1[3],&input1[4]); fscanf(fd2,"%d %d %d %d %d",&input2[0],&input2[1],&input2[2],&input2[3],&input2[4]); //做運算...動點腦吧... EXIT: if(fd1) fclose(fd1); if(fd2) fclose(fd2); |
暗黑破壞神
版主 發表:9 回覆:2301 積分:1627 註冊:2004-10-04 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |