首页 > 其他分享 >实验6

实验6

时间:2024-12-22 20:52:55浏览次数:3  
标签:name int void vip 实验 printf 31

4

源代码

 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 sales_price;     // 售价
 9     int  sales_count;       // 销售册数
10 } Book;
11 
12 void output(Book x[], int n);
13 void sort(Book x[], int n);
14 double sales_amount(Book x[], int n);
15 
16 int main() {
17      Book x[N] = {{"978-7-5327-6082-4", "门将之死", "罗纳德.伦", 42, 51},
18                   {"978-7-308-17047-5", "自由与爱之地:入以色列记", "云也退", 49 , 30},
19                   {"978-7-5404-9344-8", "伦敦人", "克莱格泰勒", 68, 27},
20                   {"978-7-5447-5246-6", "软件体的生命周期", "特德姜", 35, 90}, 
21                   {"978-7-5722-5475-8", "芯片简史", "汪波", 74.9, 49},
22                   {"978-7-5133-5750-0", "主机战争", "布莱克.J.哈里斯", 128, 42},
23                   {"978-7-2011-4617-1", "世界尽头的咖啡馆", "约翰·史崔勒基", 22.5, 44},
24                   {"978-7-5133-5109-6", "你好外星人", "英国未来出版集团", 118, 42},
25                   {"978-7-1155-0509-5", "无穷的开始:世界进步的本源", "戴维·多伊奇", 37.5, 55},
26                   {"978-7-229-14156-1", "源泉", "安.兰德", 84, 59}};
27     
28     printf("图书销量排名(按销售册数): \n");
29     sort(x, N);
30     output(x, N);
31 
32     printf("\n图书销售总额: %.2f\n", sales_amount(x, N));
33     
34     return 0;
35 }
36 
37 void output(Book x[], int n){
38     for(int i=0;i<n;i++){
39         printf("%s %s %s %.2f %d\n",x[i].isbn,x[i].name,x[i].author,x[i].sales_price,x[i].sales_count);
40     }
41 }
42 
43 void sort(Book x[],int n){
44     for (int i=0;i<n-1;i++){
45         for(int j=0;j<n-i-1;j++){
46             if(x[j].sales_count<x[j+1].sales_count){
47                 Book temp=x[j];
48                 x[j]=x[j+1];
49                 x[j+1]=temp;
50             }
51         }
52     }
53 }
54 
55 double sales_amount(Book x[],int n){
56     double total =0;
57     for(int i=0;i<n;i++){
58         total +=x[i].sales_price*x[i].sales_count;
59     }
60     return total;
61 }

运行结果

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 
21     printf("输入日期:(以形如2024-12-16这样的形式输入)\n");
22     for(i = 0; i < 3; ++i) {
23         input(&d);
24         printf("%d-%02d-%02d是这一年中第%d天\n\n", d.year, d.month, d.day, day_of_year(d));
25     }
26 }
27 
28 void test2() {
29     Date Alice_birth, Bob_birth;
30     int i;
31     int ans;
32 
33     printf("输入Alice和Bob出生日期:(以形如2024-12-16这样的形式输入)\n");
34     for(i = 0; i < 3; ++i) {
35         input(&Alice_birth);
36         input(&Bob_birth);
37         ans = compare_dates(Alice_birth, Bob_birth);
38         
39         if(ans == 0)
40             printf("Alice和Bob一样大\n\n");
41         else if(ans == -1)
42             printf("Alice比Bob大\n\n");
43         else
44             printf("Alice比Bob小\n\n");
45     }
46 }
47 
48 int main() {
49     printf("测试1: 输入日期, 打印输出这是一年中第多少天\n");
50     test1();
51 
52     printf("\n测试2: 两个人年龄大小关系\n");
53     test2();
54 }
55 
56 // 补足函数input实现
57 // 功能: 输入日期给pd指向的Date变量
58 void input(Date *pd) {
59     scanf("%d-%d-%d", &pd->year, &pd->month, &pd->day);
60 }
61 
62 // 补足函数day_of_year实现
63 // 功能:返回日期d是这一年的第多少天
64 int day_of_year(Date d) {
65     int days[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
66     int day0fYear=0;
67     if(d.year%4==0&&(d.year%100!=0||d.year%400==0)){
68         days[2]=29;
69     }
70     
71     for(int i=1;i<d.month;i++){
72         day0fYear+=days[i];
73     }
74     day0fYear+=d.day;
75     
76     return day0fYear;
77 }
78 
79 // 补足函数compare_dates实现
80 // 功能:比较两个日期: 
81 // 如果d1在d2之前,返回-1;
82 // 如果d1在d2之后,返回1
83 // 如果d1和d2相同,返回0
84 int compare_dates(Date d1, Date d2) {
85     if(d1.year<d2.year)return -1;
86     if(d1.year>d2.year)return 1;
87     
88     if(d1.month<d2.month)return -1;
89     if(d1.month>d2.month)return 1;
90     
91     if(d1.day<d2.day)return -1;
92     if(d1.day>d2.day)return 1;
93     
94     return 0;
95 }

运行结果

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 // 函数声明
14 void output(Account x[], int n);    // 输出账户数组x中n个账户信息,其中,密码用*替代显示
15 
16 int main() {
17     Account x[] = {{"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 
27     return 0;
28 }
29 
30 // 待补足的函数output()实现
31 // 功能:遍历输出账户数组x中n个账户信息
32 //      显示时,密码字段以与原密码相同字段长度的*替代显示
33 void output(Account x[], int n) {
34     for (int i=0;i<n;i++){
35         printf("用户名:%s\n",x[i].username);
36         printf("密码:");
37         for (int j=0;j<strlen(x[i].password);j++){
38             printf("*");
39         }
40         printf("\n");
41         printf("账户类型:");
42         switch(x[i].type){
43             case admin:
44                 printf("管理员\n");
45                 break;
46                 case student:
47                     printf("学生\n");
48                     break;
49                     case teacher:
50                         printf("教师\n");
51                         break;
52         }
53         printf("\n");
54     }
55 }

运行结果

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 // 函数声明
 12 void set_vip_contact(Contact x[], int n, char name[]);  // 设置紧急联系人
 13 void output(Contact x[], int n);    // 输出x中联系人信息
 14 void display(Contact x[], int n);   // 按联系人姓名字典序升序显示信息,紧急联系人最先显示
 15 
 16 
 17 #define N 10
 18 int main() {
 19     Contact list[N] = {{"刘一", "15510846604", 0},
 20                        {"陈二", "18038747351", 0},
 21                        {"张三", "18853253914", 0},
 22                        {"李四", "13230584477", 0},
 23                        {"王五", "15547571923", 0},
 24                        {"赵六", "18856659351", 0},
 25                        {"周七", "17705843215", 0},
 26                        {"孙八", "15552933732", 0},
 27                        {"吴九", "18077702405", 0},
 28                        {"郑十", "18820725036", 0}};
 29     int vip_cnt, i;
 30     char name[20];
 31 
 32     printf("显示原始通讯录信息: \n"); 
 33     output(list, N);
 34 
 35     printf("\n输入要设置的紧急联系人个数: ");
 36     scanf("%d", &vip_cnt);
 37     
 38     printf("输入%d个紧急联系人姓名:\n", vip_cnt);
 39     for(i = 0; i < vip_cnt; ++i) {
 40         scanf("%s", name);
 41         set_vip_contact(list, N, name);
 42     }
 43 
 44     printf("\n显示通讯录列表:(按姓名字典序升序排列,紧急联系人最先显示)\n");
 45     display(list, N);
 46 
 47     return 0;
 48 }
 49 
 50 // 补足函数set_vip_contact实现
 51 // 功能:将联系人数组x中,联系人姓名与name一样的人,设置为紧急联系人(即成员vip值设为1)
 52 void set_vip_contact(Contact x[], int n, char name[]) {
 53     for(int i=0;i<n;i++){
 54         if(strcmp(x[i].name,name)==0){
 55             x[i].vip=1;
 56             break;
 57         }
 58     }
 59 }
 60 
 61 // 补足函数display实现
 62 // 功能: 显示联系人数组x中的联系人信息
 63 //      按姓名字典序升序显示, 紧急联系人显示在最前面
 64 void display(Contact x[], int n) {
 65     Contact vip[10],fvip[10];
 66     int vipcount=0,fvipcount=0;
 67     int i,j;
 68 
 69     for(i = 0;i < n;i++){
 70         if(x[i].vip)
 71            vip[vipcount++]=x[i];
 72         else
 73            fvip[fvipcount++]=x[i];
 74     }
 75 
 76     Contact y[20];
 77     int ycount=0;
 78 
 79     for(i = 0;i < vipcount;i++)
 80         y[ycount++]=vip[i];
 81     for(i = 0;i < fvipcount;i++)
 82         y[ycount++]=fvip[i];
 83 
 84     Contact t;
 85 
 86     for(i = 0;i < vipcount-1;i++)
 87         for(j = 0;j < vipcount-1-i;j++)
 88             if(strcmp(y[j].name,y[j+1].name)>0){
 89                 t=y[j];
 90                 y[j]=y[j+1];
 91                 y[j+1]=t;
 92             }
 93     for(i = vipcount;i < ycount-1;i++)
 94         for(j = vipcount;j < ycount-1-i;j++)
 95             if(strcmp(y[j].name,y[j+1].name)>0){
 96                 t=y[j];
 97                 y[j]=y[j+1];
 98                 y[j+1]=t;
 99             }
100 
101     for(i = 0;i < ycount;i++){
102         printf("%-10s%-15s",y[i].name,y[i].phone);
103         if(y[i].vip)
104            printf("%5s","*");
105         printf("\n");
106     }
107 }
108 
109 void output(Contact x[],int n){
110     int i;
111 
112     for(i = 0;i < n;++i){
113         printf("%-10s%-15s",x[i].name,x[i].phone);
114         if(x[i].vip)
115            printf("%5s","*");
116         printf("\n");
117     }
118 }

运行结果

 

标签:name,int,void,vip,实验,printf,31
From: https://www.cnblogs.com/yjljf0718/p/18622508

相关文章

  • 实验6
    实验6task.4源代码:1#include<stdio.h>2#defineN1034typedefstruct{5charisbn[20];//isbn号6charname[80];//书名7charauthor[80];//作者8doublesales_price;//售价9intsales_......
  • MySQL-存储过程(头歌数据库实验题)
    (学校数据库课程的头歌平台实验题,根据自己理解编写,希望对正在学的人有启发作用和借鉴帮助,不喜勿喷,有错请联系改正)存储过程:输入1任务描述:本关任务:编写一个存储过程,输入起始价格、价格分段长度、价格分段数,将Books表中处于某一区间段的价格数mSalePrice改为所在区间的起始数。......
  • 实验
    任务41#include<stdio.h>2#defineN1034typedefstruct{5charisbn[20];6charname[80];7charauthor[80];8doublesales_price;9intsales_count;10}Book;1112void......
  • 实验6
    任务4源代码1#include<stdio.h>2#defineN1034typedefstruct{5charisbn[20];//isbn号6charname[80];//书名7charauthor[80];//作者8doublesales_price;//售价9intsales_count;......
  • ACL 和 NAT(配eNSP实验模拟)
    目录一:ACL(访问控制列表)1.什么是ACL(访问控制列表)2.ACL概述和应用3.ACL工作原理:4.ACL种类5.ACL组成和规则​6.ACL的匹配位置。7.acl实例模拟二.NAT(网络地址转换)1.NAT工作原理如下:​2.NAT技术转换流程如下:​3.静态NAT案例分析1.动态NAT:4.Easy-IP5.NATPT(端口映......
  • 实验 6
    任务11#include<stdio.h>2#include<string.h>3#defineN345typedefstructstudent{6intid;7charname[20];8charsubject[20];9doubleperf;10double......
  • 实验6 模板类、文件I\O和异常处理
    实验任务4#pragmaonce#include<iostream>#include<stdexcept>usingnamespacestd;template<typenameT>classVector{public:Vector(intn,intvalue=0);Vector(Vector<T>&v);~Vector();intget_size()......
  • 实验六
    task4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidou......
  • 实验6 C语言结构体、枚举应用编程
    4.实验任务4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidoutput(Bookx[],intn);voidsort(Bookx[],intn);......
  • 实验6
    task4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidou......