摘要: #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 int sal 阅读全文
posted @ 2024-12-19 14:16 zhj910 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #define N 5 3 void input(int x[], int n); 4 void output(int x[], int n); 5 void find_min_max(int x[], int n, int* pmin, int* pma 阅读全文
posted @ 2024-12-05 21:06 zhj910 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #define N 4 3 #define M 2 4 void test1() 5 { 6 int x[N] = { 1,9,8,4 }; 7 int i; 8 printf("sizeof(x)=%d\n", sizeof(x)); 9 for (i 阅读全文
posted @ 2024-11-10 15:09 zhj910 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1 1 #include<stdio.h> 2 char score(int s); 3 int main() 4 { 5 int s; 6 char a; 7 while (scanf("%d", &s) != EOF) 8 { 9 a = score(s); 10 printf("分数:%d", 阅读全文
posted @ 2024-10-28 14:10 zhj910 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1 #include<stdio.h> 2 #include<math.h> 3 #include<time.h> 4 #define N 5 5 #define N1 397 6 #define N2 476 7 #define N3 21 8 int main() 9 { 10 int cnt 阅读全文
posted @ 2024-10-10 13:18 zhj910 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 实验1源代码 1 #include<math.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-09-25 19:46 zhj910 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zhj910 阅读全文
posted @ 2024-09-25 16:54 zhj910 阅读(9) 评论(0) 推荐(0) 编辑