12 2023 档案

摘要:4 #include <stdio.h> #include <string.h> #define N 5 #define M 80 int main() { char songs[N][M]; FILE* fp; fp = fopen("data1.txt", "r"); if (fp == NUL 阅读全文
posted @ 2023-12-19 18:09 二硫化碳 阅读(47) 评论(0) 推荐(0)
摘要:4. #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; d 阅读全文
posted @ 2023-12-16 21:14 二硫化碳 阅读(42) 评论(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 @ 2023-12-03 13:56 二硫化碳 阅读(27) 评论(0) 推荐(0)