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 阅读全文
posted @ 2024-12-30 08:47 阳光小狗 阅读(5) 评论(0) 推荐(0) 编辑
摘要: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; 阅读全文
posted @ 2024-12-22 14:40 阳光小狗 阅读(3) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2024-12-08 00:16 阳光小狗 阅读(7) 评论(0) 推荐(0) 编辑