12 2022 档案

摘要:task 4 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int main() { FILE* fp; fp = fopen("D:\\.temp\\data4.txt", "r"); if (feof(fp)) { printf("fail 阅读全文
posted @ 2022-12-23 20:05 如果路过 阅读(23) 评论(0) 推荐(0)
摘要:task 1 #include <stdio.h> #include <string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; double perf; double mid; d 阅读全文
posted @ 2022-12-21 09:25 如果路过 阅读(32) 评论(0) 推荐(0)