摘要: task4 #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 17:07 palpitate-li 阅读(6) 评论(0) 推荐(0) 编辑
摘要: task1 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, int* pmin, 阅读全文
posted @ 2024-12-08 23:11 palpitate-li 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务1 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x) 阅读全文
posted @ 2024-11-10 14:36 palpitate-li 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 任务1 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 = score_t 阅读全文
posted @ 2024-10-30 13:00 palpitate-li 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务1 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<math.h> 4 5 #define N 5 6 #define N1 397 7 #define N2 476 8 #define N3 21 9 10 int main() { 11 阅读全文
posted @ 2024-10-13 10:37 palpitate-li 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 任务1 1 #include<stdio.h> 2 int main() 3 { 4 printf(" 0 \n"); 5 printf("<H>\n"); 6 printf("I I\n"); 7 printf(" 0 \n"); 8 printf("<H>\n"); 9 printf("I I\ 阅读全文
posted @ 2024-10-02 10:08 palpitate-li 阅读(7) 评论(0) 推荐(0) 编辑