摘要:
任务四 #include <stdio.h> #include <stdlib.h> int is_word(char x); int main() { FILE* fp; char ch; int i, line = 1, count = 0; fp = fopen("D:/homework/da 阅读全文
posted @ 2024-12-29 19:19
Shi1naii
阅读(9)
评论(0)
推荐(0)
摘要:
任务四 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int 阅读全文
posted @ 2024-12-22 11:28
Shi1naii
阅读(4)
评论(0)
推荐(0)
摘要:
任务一(1) #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, int *pmax) 阅读全文
posted @ 2024-12-08 21:00
Shi1naii
阅读(6)
评论(0)
推荐(0)