Download presentation
Presentation is loading. Please wait.
1
File I/O 範例講解 授課:林哲嘉 日期: 2009/04/29
2
範例:上機考第三題 Add 部分 1. 將檔案的資料顯示在畫面 2. 將要加入檔案加到資料的尾端
3
while(j != 0) { printf(" 欲新增幾筆資料 ??"); scanf("%d", &count); if(count == 0) // 使用者不輸入資料 { break; } for(int i = 1; i <= count; i++) { printf(" 輸入學生名稱 / 分數 \n"); scanf("%s\n%d", &inputAccount, &inputPoint); openFile = fopen("list.txt", "a"); fprintf(openFile, "\n%s\t%d", inputAccount, inputPoint); fclose(openFile); } printf(" 想繼續輸入資料 ?? 輸入 0 離開 其他數字繼續新增資料 "); scanf("%d", &j); }
4
Sort 部分 1. 將資料存到陣列 2. 作氣泡排序法 3. 寫回檔案
5
Search 部分 主要會利用到 feof 以及 strcmp 這兩個指令來 達到判斷是不是有資料存在
6
在原先的程式上多加上修改資料的功能。 未進行修改前的資料 回家作業 (HW7)
7
繳交期限: 2009/05/03 晚上 12 點
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.