實驗7

iv77發表於2024-06-23

task1

// 將圖書資訊寫入文字檔案data1.txt
// 再從檔案中讀取圖書資訊,列印輸出到螢幕上,並顯示行號
 
#include <stdio.h>

#define N 80
#define M 100

typedef struct {
	char name[N];   // 書名 
	char author[N]; // 作者 
} Book;

// 函式宣告
void func1();
void func2();


int main() {
	func1();
    func2();
	
	return 0;
}

// 函式func1定義
// 功能:把一組圖書資訊格式化寫入文字檔案
void func1() {
    Book x[] = { {"《雕塑家》", "斯科特.麥克勞德"},
                  {"《燈塔》", "克里斯多夫.夏布特"},
	              {"《五號屠宰場》", "庫爾特.馮內古特"}, 
				  {"《出賣月亮的人》", "羅伯特.海因萊茵"},
				  {"《大地之上》", "羅欣頓·米斯特里"}, 
                  {"《上學記》", "何兆武"}, 
                  {"《命運》", "蔡崇達"} };
    int n, i;
	FILE *fp;

    // 計算陣列x中元素個數
    n = sizeof(x) / sizeof(Book);       
	
	// 以寫的方式開啟文字檔案data1.txt 
	fp = fopen("data1.txt", "w");
	
	// 如果開啟檔案失敗,輸出提示資訊並返回 
	if(fp == NULL) {
		printf("fail to open file\n");
		return;
	}
	
	// 將結構體陣列x中的圖書資訊寫到fp指向的檔案data1.txt
	for(i = 0; i < n; ++i)
		fprintf(fp, "%-20s %-20s\n", x[i].name, x[i].author);
	
	fclose(fp);
}

// 函式func2定義
// 功能:從文字檔案中格式化讀取一組圖書資訊到陣列,輸出到螢幕,並顯示行號
void func2() {
    Book x[M]; 
	int i, n;
	
	FILE *fp;
	
	// 以讀的方式開啟文字檔案data1.txt 
	fp = fopen("data1.txt", "r");
	
	// 如果開啟檔案失敗,輸出提示資訊並返回 
	if(fp == NULL) {
		printf("fail to open file\n");
		return;
	}
	
    // 從檔案中讀取圖書資訊,儲存到結構體陣列x中
   i = 0;
	while(!feof(fp)) {
        fscanf(fp, "%s%s", x[i].name, x[i].author);
        ++i;
    }
    n = i-1;

    // 將圖書資訊列印輸出到螢幕上
    for(i = 0; i < n; ++i)
        printf("%d. %-20s%-20s\n", i+1, x[i].name, x[i].author);
	
	fclose(fp);
}


task2.1

// 將圖書資訊以資料塊方式寫入二進位制檔案data2.dat
// 再從二進位制檔案data2.dat以資料塊方式讀取圖書資訊,列印輸出到螢幕,並顯示行號
 
#include <stdio.h>
#define N 80
#define M 7

typedef struct {
	char name[N];   // 書名 
	char author[N]; // 作者 
} Book;

// 函式宣告
void func1();
void func2();

int main() {
	func1();
    func2();
	
	return 0;
}

// 函式func1定義
// 功能:將圖書資訊以資料塊方式寫入二進位制檔案data2.dat
void func1() {
    Book x[M] = { {"《雕塑家》", "斯科特.麥克勞德"},
                  {"《燈塔》", "克里斯多夫.夏布特"},
	              {"《五號屠宰場》", "庫爾特.馮內古特"}, 
				  {"《出賣月亮的人》", "羅伯特.海因萊茵"},
				  {"《大地之上》", "羅欣頓·米斯特里"}, 
                  {"《上學記》", "何兆武"}, 
                  {"《命運》", "蔡崇達"} };
	int n, i;
	
	FILE *fp;
 
	
	// 以寫的方式開啟二進位制檔案data2.dat 
	fp = fopen("data2.dat", "wb");
	
	// 如果開啟檔案失敗,輸出提示資訊並返回 
	if(fp == NULL) {
		printf("fail to open file\n");
		return;
	}
	
	// 將結構體陣列x中的圖書資訊以資料塊方式寫入檔案data2.dat
    fwrite(x, sizeof(Book), M, fp);
	
	fclose(fp);
}

// 函式func2定義
// 功能:從二進位制檔案data2.dat以資料塊方式讀取圖書資訊,列印輸出到螢幕,並顯示行號
void func2() {
    Book x[M];
	int i;
	
	FILE *fp;
	
	// 以讀的方式開啟二進位制檔案data2.dat 
	fp = fopen("data2.dat", "rb");
	
	// 如果開啟檔案失敗,輸出提示資訊並返回 
	if(fp == NULL) {
		printf("fail to open file\n");
		return;
	}
	
	// 從檔案data2.dat以資料塊方式讀入圖書資訊資料到結構體陣列x
    fread(x, sizeof(Book), M, fp);

    // 在螢幕上輸出結構體陣列x中儲存的圖書資訊
    for(i = 0; i < M; ++i)
        printf("%d. %-20s%-20s\n", i+1, x[i].name, x[i].author);
	
	fclose(fp);
}


task2.2

// 將圖書資訊以資料塊方式寫入二進位制檔案data2.dat
// 再從二進位制檔案data2.dat以資料塊方式讀取圖書資訊,列印輸出到螢幕,並顯示行號
 
#include <stdio.h>
#define N 80
#define M 7

typedef struct {
	char name[N];   // 書名 
	char author[N]; // 作者 
} Book;

// 函式宣告
void func1();
void func2();

int main() {
	func1();
    func2();
	
	return 0;
}

// 函式func1定義
// 功能:將圖書資訊以資料塊方式寫入二進位制檔案data2.dat
void func1() {
    Book x[M] = { {"《雕塑家》", "斯科特.麥克勞德"},
                  {"《燈塔》", "克里斯多夫.夏布特"},
	              {"《五號屠宰場》", "庫爾特.馮內古特"}, 
				  {"《出賣月亮的人》", "羅伯特.海因萊茵"},
				  {"《大地之上》", "羅欣頓·米斯特里"}, 
                  {"《上學記》", "何兆武"}, 
                  {"《命運》", "蔡崇達"} };
	int n, i;
	
	FILE *fp;
 
	
	// 以寫的方式開啟二進位制檔案data2.dat 
	fp = fopen("data2.dat", "wb");
	
	// 如果開啟檔案失敗,輸出提示資訊並返回 
	if(fp == NULL) {
		printf("fail to open file\n");
		return;
	}
	
	// 將結構體陣列x中的圖書資訊以資料塊方式寫入檔案data2.dat
    fwrite(x, sizeof(Book), M, fp);
	
	fclose(fp);
}

// 函式func2定義
// 功能:從二進位制檔案data2.dat以資料塊方式讀取圖書資訊,列印輸出到螢幕,並顯示行號
void func2() {
    Book x[N];
	int i, cnt;
	
	FILE *fp;
	
	// 以讀的方式開啟二進位制檔案data2.dat 
	fp = fopen("data2.dat", "rb");
	
	// 如果開啟檔案失敗,輸出提示資訊並返回 
	if(fp == NULL) {
		printf("fail to open file\n");
		return;
	}
	
	// 從檔案data2.dat以資料塊方式讀入圖書資訊資料到結構體陣列x
    i = 0;
    while(!feof(fp)) {
        fread(&x[i], sizeof(Book), 1, fp);
        i++;
    }
    cnt = i - 1;

    // 在螢幕上輸出結構體陣列x中儲存的圖書資訊
    for(i = 0; i < cnt; ++i)
        printf("%d. %-20s%-20s\n", i+1, x[i].name, x[i].author);
	
	fclose(fp);
}

task3

#include <stdio.h>
#define N 5
#define M 80

// 函式宣告
void func1();
void func2();
void func3();

int main() {
    func1();
    func2();
    func3();

    return 0;
}

// 函式定義
// 功能:使用fputs()將一組字串寫入文字檔案
void func1() {
    // 定義字元指標陣列,每個元素存放字串的起始地址
    char *ptr[N] = { "Working\'s Blues",
                     "Everything Will Flow",
                     "Streets of London",
                     "Perfect Day",
                     "Philadelphia"};
    int i;
    FILE *fp;

    fp = fopen("data3.txt", "w");
    if(fp == NULL) {
        printf("fail to open file\n");
        return;
    }

    for(i = 0; i < N; ++i) {
        fputs(ptr[i], fp);  // 把ptr[i]指向的字串寫入fp指向的檔案中
        fputs("\n", fp);
    }
    
    fclose(fp);
}

// 函式func2定義
// 功能:使用fgets()從檔案中讀取字串並在螢幕上顯示
void func2() {
    char songs[N][M];
    int i;
    FILE *fp;

    fp = fopen("data3.txt", "r");
    if(fp == NULL) {
        printf("fail to open file\n");
        return;
    }

    for(i = 0; i < N; ++i)
        fgets(songs[i], 80, fp);

    for(i = 0; i < N; ++i)
        printf("%d. %s", i+1, songs[i]);
    
    fclose(fp);
}

// 函式func3定義
// 功能:使用fetc從檔案中逐個字元讀取資料,列印輸出到螢幕上
void func3() {
    char ch;
    FILE *fp;

    fp = fopen("data3.txt", "r");
    if(fp == NULL) {
        printf("fail to open file\n");
        return;
    }

    while(!feof(fp)) {
        ch = fgetc(fp);
        if(ch == EOF)
            break;
        
        putchar(ch);
    }

    fclose(fp);
}


task4

#include<stdio.h>

int main(){
    FILE *fp;
    
    char ch;
    int count=0;
    
    fp=fopen("d:\\data4.txt","r");
    if(fp==NULL){
        printf("fail to open file\n");
        return 0;
    }
while(!feof(fp)){
         ch = fgetc(fp);
         if(ch!=' '&& ch!='\n' && ch!=EOF)
             count++;
     }
         fclose(fp);
    
     printf("data4.txt中共包含字元數(不計空白符):%d",count);
     return 0;
 
}


task5

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define N 10

typedef struct {
    long int id;
    char name[20];
    float objective;    // 客觀題得分
    float subjective;   // 操作題得分
    float sum;          // 總分
    char ans[10];       // 考試結果
} STU;

// 函式宣告
void finput(STU st[], int n);
void foutput(STU st[], int n);
void output(STU st[], int n);
int process(STU st[], int n, STU st_pass[]);

int main() {
    STU stu[N], stu_pass[N];
    int cnt;
    double pass_rate;

    printf("從檔案讀入%d個考生資訊...\n", N);
    finput(stu, N);

    printf("\n對考生成績進行統計...\n");
    cnt = process(stu, N, stu_pass);

    printf("\n透過考試的名單:\n");
    output(stu_pass, cnt);      // 輸出到螢幕
    foutput(stu_pass, cnt);    // 輸出到檔案

    pass_rate = 1.0 * cnt / N;
    printf("\n本次等級考試透過率: %.2f%%\n", pass_rate*100);

    return 0;
}

// 把透過考試的考生完整資訊輸出到螢幕上
// 准考證號,姓名,客觀題得分,操作題得分,總分,結果
void output(STU st[], int n) {
    int i;
    
    printf("准考證號\t姓名\t客觀題得分\t操作題得分\t總分\t\t結果\n");
    for (i = 0; i < n; i++)
    	printf("%ld\t\t%s\t%.2f\t\t%.2f\t\t%.2f\t\t%s\n", st[i].id, st[i].name, st[i].objective, st[i].subjective, st[i].sum, st[i].ans);
}

// 從文字檔案examinee.txt讀入考生資訊:准考證號,姓名,客觀題得分,操作題得分
void finput(STU st[], int n) {
    int i;
    FILE *fin;

    fin = fopen("examinee.txt", "r");
    if (fin == NULL) {
        printf("fail to open file\n");
        exit(0);
    }

    while (!feof(fin)) {
        for (i = 0; i < n; i++)
            fscanf(fin, "%ld %s %f %f", &st[i].id, st[i].name, &st[i].objective, &st[i].subjective);
    }

    fclose(fin);
}

// 把透過考試的考生完整資訊寫入檔案list_pass.txt
// 准考證號,姓名,客觀題得分,操作題得分,總分,結果
void foutput(STU s[], int n) {
    FILE *fout;
    int i;
    
    // 儲存到檔案 
    fout = fopen("list_pass.txt", "w");
    if (!fout) {
        printf("fail to open or create list_pass.txt\n");
        exit(0);
    }
    
    fprintf(fout, "准考證號\t\t姓名\t客觀題得分\t操作題得分\t總分\t\t結果\n");

    for (i = 0; i < n; i++)
        fprintf(fout, "%ld\t\t%s\t%.2f\t\t%.2f\t\t%.2f\t\t%s\n", s[i].id, s[i].name, s[i].objective, s[i].subjective, s[i].sum, s[i].ans);

    fclose(fout);
}

// 對考生資訊進行處理:計算每位考生考試總分、結果;統計考試透過的人數
int process(STU st[], int n, STU st_pass[]) {
  int process(STU st[], int n, STU st_pass[]) {
  int i,j;
  for(i=0,j=0;i<n;i++){
      st[i].sum=st[i].objective+st[i].subjective;
      if(st[i].sum>=60){
         strcpy(st[i].ans,"pass");
         st_pass[j++]=st[i];}
      else 
	     strcpy(st[i].ans,"fail"); 
  }
 
  return j;
}
   
}


task6

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define N 100
struct STU {
    long int id;
    char name[N];
    char cla[N];
} st[N], lucky[N];

void func1(void);
int func2(void);
void func3(void);
int main() {
    int j, n;
    func1();
    srand((unsigned)time(NULL));
    for (j = 0; j < 5; j++) {
        n = func2();
        lucky[j] = st[n];
        printf("%ld\t %s\t %s\t\n", lucky[j].id, lucky[j].name, lucky[j].cla);
    }
    func3();
    getchar();
    return 0;
}
void func1(void) {
    int i;
    FILE *fp;
    fp = fopen("d:\\list.txt", "r");
    if (fp == NULL) {
        printf("Failed to open file\n");
        return;
    }
    i = 0;
    while (fscanf(fp, "%ld %s %s", &st[i].id, st[i].name, st[i].cla) == 3 && i < N) {
        ++i;
    }
    fclose(fp);
}
int func2(void) {
    return rand() % 80;
}
void func3(void) {
    int j;
    FILE *fout;
    fout = fopen("d:\\lucky.txt", "w");
    if (fout == NULL) {
        printf("Failed to open file\n");
        return;
    }
    for (j = 0; j < 5; j++) {
        fprintf(fout, "%ld\t %s\t %s\t\n", lucky[j].id, lucky[j].name, lucky[j].cla);
    }
    fclose(fout);
}

相關文章