摘要: 实验任务4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 i 阅读全文
posted @ 2024-12-22 13:03 seleucus 阅读(2) 评论(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); i 阅读全文
posted @ 2024-12-08 17:41 seleucus 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; printf("sizeof(x) = %d\n", sizeof(x)); for (i = 0; i < 阅读全文
posted @ 2024-11-10 16:36 seleucus 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 #include <stdio.h> char score_to_grade(int score); int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_grad 阅读全文
posted @ 2024-10-27 21:41 seleucus 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 问题1:line21 生成一个397-476之间的随机数对应11,12班学号 问题2:line 25生成一个0-21之间的随机数对应奇安信班学号 问题3:随机生成指定数量的学号 实验任务2 #include <stdio.h> #include <stdlib.h> #include < 阅读全文
posted @ 2024-10-09 21:12 seleucus 阅读(9) 评论(0) 推荐(0) 编辑