摘要: 任务四 源代码 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sa 阅读全文
posted @ 2024-12-16 20:55 秦文惠 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 任务一 tesk1-1 源代码 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, 阅读全文
posted @ 2024-12-03 22:09 秦文惠 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 任务一 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1(){ 5 int x[N]={1,9,8,4}; 6 int i; 7 printf("sizeof(x)=%d\n",sizeof(x)); 8 for(i= 阅读全文
posted @ 2024-11-05 18:23 秦文惠 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 任务一 源代码 1 #include <stdio.h> 2 char score_to_grade(int score); 3 int main(){ 4 int score; 5 char grade; 6 while(scanf("%d",&score)!=EOF){ 7 grade=scor 阅读全文
posted @ 2024-10-25 17:11 秦文惠 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 任务一 源代码 1 #include <stdio.h> 2 #include <time.h> 3 4 #define N 5 5 #define N1 397 6 #define N2 476 7 #define N3 21 8 int main(){ 9 10 int random_major 阅读全文
posted @ 2024-10-10 14:07 秦文惠 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 任务一 源代码 1 #include <stdio.h> 2 int main(){ 3 printf(" O\n"); 4 printf("<H>\n"); 5 printf("I I\n"); 6 printf(" O\n"); 7 printf("<H>\n"); 8 printf("I I\ 阅读全文
posted @ 2024-09-26 23:21 秦文惠 阅读(14) 评论(0) 推荐(0) 编辑