摘要: 任务4 源代码 1 #include<stdio.h> 2 #define N 10 3 typedef struct{ 4 char isbn[20]; 5 char name[80]; 6 char author[80]; 7 double sales_price; 8 int sales_co 阅读全文
posted @ 2024-12-20 15:25 松松睡不醒 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 任务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,int *pmin,int 阅读全文
posted @ 2024-12-08 12:50 松松睡不醒 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 任务1 源代码 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("sizef9x=%d\n",sizeof(x)); 8 for(i=0;i 阅读全文
posted @ 2024-11-09 21:04 松松睡不醒 阅读(5) 评论(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-27 17:07 松松睡不醒 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 任务1 源代码 1 #include <time.h> 2 #define N 5 3 #define N1 397 4 #define N2 476 5 #define N3 21 6 int main(){ 7 int cnt; 8 int random_major,random_no; 9 1 阅读全文
posted @ 2024-10-11 15:17 松松睡不醒 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 任务1 源代码: 1 #include<stdio.h> 2 int main() 3 { 4 printf(" o \n"); 5 printf("<H>\n"); 6 printf("I I\n"); 7 printf(" o \n"); 8 printf("<H>\n"); 9 printf( 阅读全文
posted @ 2024-09-27 15:56 松松睡不醒 阅读(9) 评论(0) 推荐(0) 编辑