Problem A: 文件操作--二進制文件讀入
阿新 • • 發佈:2018-04-22
math tput cannot clu break pen esc 數學 個學生
Submit: 2232 Solved: 631
[Submit][Status][Web Board]
Problem A: 文件操作--二進制文件讀入
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 2232 Solved: 631
[Submit][Status][Web Board]
Description
現有100名學生的姓名(name)、學號(num)、英語(English)、數學(Math)、語文(Chinese)成績存儲在一個二進制文件student.dic中(姓名用char[20],學號和各科成績用int存儲),現要求將指定行數的學生信息輸出,每條信息占一行。
前5行學生信息為:
akdh 13773 84 83 66
fjka 30257 15 14 88
sfhklas 61281 87 8 31
hfu 38635 55 50 60
iwehfk 92803 54 6 77
Input
要輸出行號的整數序列,以0作為結束標誌。
Output
輸出學生信息,每個學生占一行
Sample Input
1 3 5 0
Sample Output
akdh 13773 84 83 66
sfhklas 61281 87 8 31
iwehfk 92803 54 6 77
#include <stdio.h> #include <stdlib.h> #include <string.h> struct student { char name[20]; int num; int English; int Math; int Chinese; }; int main() { struct student str[100]; int number,i=0; FILE *fp; if((fp=fopen("student.dic","rb"))==NULL) { printf("Cannot open file!"); exit(1); } else { while(fread(&str[i],sizeof(struct student),1,fp)!=0)//二進制讀取函數 { i++; } fclose(fp); while(scanf("%d",&number)!=EOF) { if(number==0) break; printf("%s %d %d %d %d\n",str[number-1].name,str[number-1].num,str[number-1].English,str[number-1].Math,str[number-1].Chinese); } } return 0; }
Problem A: 文件操作--二進制文件讀入