实验6
任务4
代码
1 #include <stdio.h> 2 #include <string.h> 3 4 #define N 10 5 6 typedef struct { 7 char isbn[20]; // isbn号 8 char name[80]; // 书名 9 char author[80]; // 作者 10 double sales_price; // 售价 11 int sales_count; // 销售册数 12 } Book; 13 14 void output(Book x[], int n); 15 void sort(Book x[], int n); 16 double sales_amount(Book x[], int n); 17 18 int main() { 19 Book x[N] = { 20 {"978-7-229-14156-1", "源泉", "安.兰德", 84, 59}, 21 {"978-7-5133-5261-1", "李白来到旧金山", "谭夏阳", 48, 16}, 22 {"978-7-5617-4347-8", "陌生人日记", "周怡芳", 72.6, 27}, 23 {"978-7-5722-5475-8", "芯片简史", "汪波", 74.9, 49}, 24 {"978-7-5046-9568-0", "数据化决策", "道格拉斯·W·哈伯德", 49, 42}, 25 {"978-7-5133-4388-6", "美好时代的背后", "凯瑟琳.布", 34.5, 39}, 26 {"978-7-1155-0509-5", "无穷的开始:世界进步的本源", "戴维·多伊奇", 37.5, 55}, 27 {"978-7-5321-5691-7", "何为良好生活", "陈嘉映", 29.5, 31}, 28 {"978-7-5133-5109-6", "你好外星人", "英国未来出版集团", 118, 42}, 29 {"978-7-2011-4617-1", "世界尽头的咖啡馆", "约翰·史崔勒基", 22.5, 44}}; 30 31 printf("图书销量排名: \n"); 32 sort(x, N); 33 output(x, N); 34 printf("\n图书销售总额: %.2f\n", sales_amount(x, N)); 35 36 return 0; 37 } 38 39 // 函数实现:output(),将所有图书按销售数量由高到低打印输出 40 void output(Book x[], int n) { 41 int i; 42 printf("%-20s%-80s%-80s%-10s%-15s\n", "ISBN", "书名", "作者", "售价", "销售册数"); 43 for (i = 0; i < n; i++) { 44 printf("%-20s%-80s%-80s%-10.2f%-15d\n", x[i].isbn, x[i].name, x[i].author, x[i].sales_price, x[i].sales_count); 45 } 46 } 47 48 // 函数实现:sort(),按销售数量由高到低对图书数组进行排序 49 void sort(Book x[], int n) { 50 int i, j; 51 Book temp; 52 for (i = 0; i < n - 1; i++) { 53 for (j = 0; j < n - i - 1; j++) { 54 if (x[j].sales_count < x[j + 1].sales_count) { 55 // 交换元素 56 temp = x[j]; 57 x[j] = x[j + 1]; 58 x[j + 1] = temp; 59 } 60 } 61 } 62 } 63 64 // 函数实现:sales_amount(),计算图书数组的总销售金额 65 double sales_amount(Book x[], int n) { 66 int i; 67 double total_sales = 0.0; 68 for (i = 0; i < n; i++) { 69 total_sales += x[i].sales_price * x[i].sales_count; 70 } 71 return total_sales; 72 }
运行截图
任务5
代码
1 #include <stdio.h> 2 3 typedef struct { 4 int year; 5 int month; 6 int day; 7 } Date; 8 9 // 函数声明 10 void input(Date *pd); // 输入日期给pd指向的Date变量 11 int day_of_year(Date d); // 返回日期d是这一年的第多少天 12 int compare_dates(Date d1, Date d2); // 比较两个日期: 13 // 如果d1在d2之前,返回-1; 14 // 如果d1在d2之后,返回1 15 // 如果d1和d2相同,返回0 16 17 void test1() { 18 Date d; 19 int i; 20 printf("输入日期:(以形如2023-12-11这样的形式输入)\n"); 21 for (i = 0; i < 3; ++i) { 22 input(&d); 23 printf("%d-%02d-%02d是这一年中第%d天\n\n", d.year, d.month, d.day, day_of_year(d)); 24 } 25 } 26 27 void test2() { 28 Date Alice_birth, Bob_birth; 29 int i; 30 int ans; 31 printf("输入Alice和Bob出生日期:(以形如2023-12-11这样的形式输入)\n"); 32 for (i = 0; i < 3; ++i) { 33 input(&Alice_birth); 34 input(&Bob_birth); 35 ans = compare_dates(Alice_birth, Bob_birth); 36 if (ans == 0) 37 printf("Alice和Bob一样大\n\n"); 38 else if (ans == -1) 39 printf("Alice比Bob大\n\n"); 40 else 41 printf("Alice比Bob小\n\n"); 42 } 43 } 44 45 int main() { 46 printf("测试1: 输入日期, 打印输出这是一年中第多少天\n"); 47 test1(); 48 printf("\n测试2: 两个人年龄大小关系\n"); 49 test2(); 50 51 return 0; 52 } 53 54 // 补足函数input实现 55 // 功能: 输入日期给pd指向的Date变量 56 void input(Date *pd) { 57 printf("请输入日期(格式:年-月-日): "); 58 scanf("%d-%d-%d", &pd->year, &pd->month, &pd->day); 59 } 60 61 // 补足函数day_of_year实现 62 // 功能:返回日期d是这一年的第多少天 63 int day_of_year(Date d) { 64 int days_in_month[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; 65 int i, days = 0; 66 67 for (i = 1; i < d.month; ++i) { 68 days += days_in_month[i]; 69 } 70 71 days += d.day; 72 73 // 处理闰年的情况 74 if ((d.year % 4 == 0 && d.year % 100 != 0) || (d.year % 400 == 0 && d.month > 2)) { 75 days++; 76 } 77 78 return days; 79 } 80 81 // 补足函数compare_dates实现 82 // 功能:比较两个日期: 83 // 如果d1在d2之前,返回-1; 84 // 如果d1在d2之后,返回1 85 // 如果d1和d2相同,返回0 86 int compare_dates(Date d1, Date d2) { 87 if (d1.year < d2.year || (d1.year == d2.year && d1.month < d2.month) || (d1.year == d2.year && d1.month == d2.month && d1.day < d2.day)) { 88 return -1; 89 } else if (d1.year > d2.year || (d1.year == d2.year && d1.month > d2.month) || (d1.year == d2.year && d1.month == d2.month && d1.day > d2.day)) { 90 return 1; 91 } else { 92 return 0; 93 } 94 }
运行截图
任务6
代码
1 #include <stdio.h> 2 #include <string.h> 3 4 enum Role { admin, student, teacher }; 5 6 typedef struct { 7 char username[20]; // 用户名 8 char password[20]; // 密码 9 enum Role type; // 账户类型 10 } Account; 11 12 // 函数声明 13 void output(Account x[], int n); // 输出账户数组x中n个账户信息,其中,密码用*替代显示 14 15 int main() { 16 Account x[] = { 17 {"A1001", "123456", student}, 18 {"A1002", "123abcdef", student}, 19 {"A1009", "xyz12121", student}, 20 {"X1009", "9213071x", admin}, 21 {"C11553", "129dfg32k", teacher}, 22 {"X3005", "921kfmg917", student}}; 23 int n; 24 n = sizeof(x) / sizeof(Account); 25 output(x, n); 26 return 0; 27 } 28 29 // 待补足的函数output()实现 30 // 功能:遍历输出账户数组x中n个账户信息 31 // 显示时,密码字段以与原密码相同字段长度的*替代显示 32 void output(Account x[], int n) { 33 int i, j; 34 printf("%-10s%-20s%-10s\n", "Username", "Password", "Role"); 35 for (i = 0; i < n; ++i) { 36 printf("%-10s", x[i].username); 37 38 // 用*替代显示密码 39 int len = strlen(x[i].password); 40 for (j = 0; j < len; ++j) { 41 printf("*"); 42 } 43 44 // 输出角色 45 switch (x[i].type) { 46 case admin: 47 printf("%-10s\n", "Admin"); 48 break; 49 case student: 50 printf("%-10s\n", "Student"); 51 break; 52 case teacher: 53 printf("%-10s\n", "Teacher"); 54 break; 55 } 56 } 57 }
运行结果
任务7
代码
1 #include <stdio.h> 2 #include <string.h> 3 4 typedef struct { 5 char name[20]; // 姓名 6 char phone[12]; // 手机号 7 int vip; // 是否为紧急联系人,是取1;否则取0 8 } Contact; 9 10 // 函数声明 11 void set_vip_contact(Contact x[], int n, char name[]); // 设置紧急联系人 12 void output(Contact x[], int n); // 输出x中联系人信息 13 void display(Contact x[], int n); // 按联系人姓名字典序升序显示信息,紧急联系人最先显示 14 15 #define N 10 16 17 int main() { 18 Contact list[N] = {{"刘一", "15510846604", 0}, 19 {"陈二", "18038747351", 0}, 20 {"张三", "18853253914", 0}, 21 {"李四", "13230584477", 0}, 22 {"王五", "15547571923", 0}, 23 {"赵六", "18856659351", 0}, 24 {"周七", "17705843215", 0}, 25 {"孙八", "15552933732", 0}, 26 {"吴九", "18077702405", 0}, 27 {"郑十", "18820725036", 0}}; 28 int vip_cnt, i; 29 char name[20]; 30 31 printf("显示原始通讯录信息: \n"); 32 output(list, N); 33 34 printf("\n输入要设置的紧急联系人个数: "); 35 scanf("%d", &vip_cnt); 36 printf("输入%d个紧急联系人姓名:\n", vip_cnt); 37 for(i = 0; i < vip_cnt; ++i) { 38 scanf("%s", name); 39 set_vip_contact(list, N, name); 40 } 41 42 printf("\n显示通讯录列表:(按姓名字典序升序排列,紧急联系人最先显示)\n"); 43 display(list, N); 44 45 // 添加下面这行代码来调用 output 函数,以显示通讯录信息 46 output(list, N); 47 48 return 0; 49 } 50 51 // 补足函数set_vip_contact实现 52 // 功能:将联系人数组x中,联系人姓名与name一样的人,设置为紧急联系人(即成员vip值设为1) 53 void set_vip_contact(Contact x[], int n, char name[]) { 54 int i; 55 for (i = 0; i < n; ++i) { 56 if (strcmp(x[i].name, name) == 0) { 57 x[i].vip = 1; 58 return; // 找到匹配的姓名,设置为紧急联系人后直接返回 59 } 60 } 61 } 62 63 // 补足函数display实现 64 // 功能: 显示联系人数组x中的联系人信息 65 // 按姓名字典序升序显示,紧急联系人显示在最前面 66 void display(Contact x[], int n) { 67 int i, j; 68 69 // 对所有联系人进行排序,确保按姓名字典序升序排列,同时紧急联系人优先显示在前面 70 for (i = 1; i < n; ++i) { 71 Contact temp = x[i]; 72 j = i - 1; 73 74 while (j >= 0 && (temp.vip > x[j].vip || (temp.vip == x[j].vip && strcoll(temp.name, x[j].name) < 0))) { 75 x[j + 1] = x[j]; 76 --j; 77 } 78 x[j + 1] = temp; 79 } 80 81 82 } 83 84 85 86 87 88 89 // 输出函数 90 void output(Contact x[], int n) { 91 int i; 92 for (i = 0; i < n; ++i) { 93 printf("%-10s%-15s", x[i].name, x[i].phone); 94 if (x[i].vip) 95 printf("%5s", "*"); 96 printf("\n"); 97 } 98 }
运行结果