12 2024 档案
摘要:4. 实验任务4:文件简单应用 #include <stdio.h> #include <stdlib.h> void countLinesAndChars(const char *fileName) { FILE *fp; int lines = 0, chars = 0; int ch; int
阅读全文
摘要:4. 实验任务4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; double sales_price; int sales_count; } Book;
阅读全文
摘要:1. 实验任务1 task1_1.c #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin
阅读全文