首页 > 其他分享 >实验6

实验6

时间:2024-12-17 16:32:19浏览次数:6  
标签:name int void year ++ 实验 printf

任务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 // 待补足:函数output()实现
38 void output(Book x[], int n)
39 {
40     int i;
41     printf("%-20s%-30s%-20s%-10s%-10s\n", "ISBN号", "书名", "作者", "售价", "销售册数");
42     for (i = 0; i < n; i++)
43         printf("%-20s%-30s%-20s%-10.1lf%-10d\n", x[i].isbn, x[i].name, x[i].author, x[i].sales_price, x[i].sales_count);
44 }
45 
46 
47 // 待补足:函数sort()实现
48 void sort(Book x[], int n)
49 {
50     int i, j;
51     Book t;
52     for (i = 0; i < n - 1; i++)
53     {
54         for (j = 0; j < n - i - 1; j++)
55         {
56             if (x[j].sales_count > x[j + 1].sales_count)
57             {
58                 t = x[j];
59                 x[j] = x[j + 1];
60                 x[j + 1] = t;
61             }
62         }
63     }
64 }
65 
66 
67 // 待补足:函数sales_amount()实现
68 double sales_amount(Book x[], int n)
69 {
70     double sum = 0.0;
71     int i;
72     for (i = 0; i < n; i++)
73     {
74         sum += x[i].sales_count * x[i].sales_price;
75     }
76     return sum;
77 }

运行结果

 

任务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 i;
 66     int days = d.day;
 67     if (d.year%4!=0||(d.year%100==0&&d.year%400!=0))//判断非闰年
 68     {
 69         for (i = d.month - 1; i > 0; i--)
 70         {
 71             if (i == 2)
 72             {
 73                 days += 28;
 74                 continue;
 75             }
 76             if (i < 8)
 77             {
 78                 if (i % 2)
 79                     days += 31;
 80                 else
 81                     days += 30;
 82             }
 83             if (i >= 8)
 84             {
 85                 if (i % 2)
 86                     days += 30;
 87                 else
 88                     days += 31;
 89             }
 90         }
 91     }
 92     else
 93     {
 94         for (i = d.month - 1; i > 0; i--)
 95         {
 96             if (i == 2)
 97             {
 98                 days += 29;
 99                 continue;
100             }
101             if (i < 8)
102             {
103                 if (i % 2)
104                     days += 31;
105                 else
106                     days += 30;
107             }
108             if (i >= 8)
109             {
110                 if (i % 2)
111                     days += 30;
112                 else
113                     days += 31;
114             }
115         }
116     }
117     return days;
118 }
119 
120 // 补足函数compare_dates实现
121 // 功能:比较两个日期: 
122 // 如果d1在d2之前,返回-1;
123 // 如果d1在d2之后,返回1
124 // 如果d1和d2相同,返回0
125 int compare_dates(Date d1, Date d2) {
126     if (d1.year < d2.year)
127         return -1;
128     else if (d1.year > d2.year)
129         return 1;
130     else
131     {
132         if (day_of_year(d1) < day_of_year(d2))
133             return -1;
134         else if (day_of_year(d1) == day_of_year(d2))
135             return 0;
136         else
137             return 1;
138     }
139 }

运行结果

 

任务6

源代码

 1 #include <string.h>
 2 
 3 enum Role {admin, student, teacher};
 4 
 5 typedef struct {
 6     char username[20];  // 用户名
 7     char password[20];  // 密码
 8     enum Role type;     // 账户类型
 9 } Account;
10 
11 
12 // 函数声明
13 void output(Account x[], int n);    // 输出账户数组x中n个账户信息,其中,密码用*替代显示
14 
15 int main() {
16     Account x[] = {{"A1001", "123456", student},
17                     {"A1002", "123abcdef", student},
18                     {"A1009", "xyz12121", student}, 
19                     {"X1009", "9213071x", admin},
20                     {"C11553", "129dfg32k", teacher},
21                     {"X3005", "921kfmg917", student}};
22     int n;
23     n = sizeof(x)/sizeof(Account);
24     output(x, n);
25 
26     return 0;
27 }
28 
29 // 待补足的函数output()实现
30 // 功能:遍历输出账户数组x中n个账户信息
31 //      显示时,密码字段以与原密码相同字段长度的*替代显示
32 void output(Account x[], int n) {
33     int i,j;
34     int len;
35     for (i = 0; i < n; i++)
36     {
37         printf("%-20s", x[i].username);
38         len = strlen(x[i].password);
39         for (j = 0; j < len; j++)
40             printf("*");
41         printf("\t\t");
42         switch (x[i].type)
43         {
44         case 0:printf("admin\n"); break;
45         case 1:printf("student\n"); break;
46         case 2:printf("teacher\n"); break;
47         }
48     }
49 }

运行结果

 

任务7

源代码

  1 #include <stdio.h>
  2 #include <string.h>
  3 #define N 10
  4 
  5 typedef struct {
  6     char name[20];      // 姓名
  7     char phone[12];     // 手机号
  8     int  vip;           // 是否为紧急联系人,是取1;否则取0
  9 } Contact; 
 10 
 11 
 12 // 函数声明
 13 void set_vip_contact(Contact x[], int n, char name[]);  // 设置紧急联系人
 14 void output(Contact x[], int n);    // 输出x中联系人信息
 15 void display(Contact x[], int n);   // 按联系人姓名字典序升序显示信息,紧急联系人最先显示
 16 
 17 
 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     int i, j;
 54     for (i = 0; i < n; i++)
 55     {
 56         if (strcmp(x[i].name, name) == 0)
 57             x[i].vip = 1;
 58     }
 59 }
 60 
 61 // 补足函数display实现
 62 // 功能: 显示联系人数组x中的联系人信息
 63 //      按姓名字典序升序显示, 紧急联系人显示在最前面
 64 void display(Contact x[], int n) {
 65     int i, j;
 66     Contact t;
 67     for (i = 0; i < n - 1; i++)
 68     {
 69         for (j = 0; j < n - i - 1; j++)
 70         {
 71             if (strcmp(x[j].name, x[j + 1].name) > 0)
 72             {
 73                 t = x[j];
 74                 x[j] = x[j + 1];
 75                 x[j + 1] = t;
 76             }
 77         }
 78     }
 79     for (i = 0; i < n - 1; i++)
 80     {
 81         for (j = 0; j < n - i - 1; j++)
 82         {
 83             if (x[j].vip < x[j + 1].vip)
 84             {
 85                 t = x[j];
 86                 x[j] = x[j + 1];
 87                 x[j + 1] = t;
 88             }
 89         }
 90     }//将紧急联系人提前
 91     for (i = 0; i < n; i++)
 92     {
 93         printf("%-10s%-15s", x[i].name, x[i].phone);
 94         if (x[i].vip)
 95             printf("%5s", "*");
 96         printf("\n");
 97     }
 98 }
 99 
100 void output(Contact x[], int n) {
101     int i;
102 
103     for(i = 0; i < n; ++i) {
104         printf("%-10s%-15s", x[i].name, x[i].phone);
105         if(x[i].vip)
106             printf("%5s", "*");
107         printf("\n");
108     }
109 }

运行结果

 

标签:name,int,void,year,++,实验,printf
From: https://www.cnblogs.com/oliveira/p/18612813

相关文章

  • 实验6 模板类、文件I/O和异常处理
    实验任务4代码Vector.hpp1#pragmaonce2#include<iostream>3#include<stdexcept>45template<typenameT>6classVector{7public:8//构造函数9Vector(intsize);10Vector(intsize,Tvalue);11Vector(constV......
  • 实验6 模板类、文件I/O和异常处理
    1.实验任务4Vector.hpp源代码:点击查看代码#pragmaonce#include<iostream>#include<stdexcept>#include<algorithm>//forstd::copytemplate<typenameT>classVector{private:T*data;size_tsize;public://构造函数Vecto......
  • 实验6 模板类、文件I/O和异常处理
    task4源码:1#include<iostream>2#include<stdexcept>3#include<algorithm>45template<typenameT>6classVector{7private:8T*data;9size_tsize;//无符号整数类型1011public:12Vector(in......
  • 实验6
    task.4代码:#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;v......
  • 【网络安全技术实操】DNS攻击实验
    DNS攻击实验1.IP说明你的用户机IP、DNS服务器IP、攻击机IP用户机IP:172.17.0.2/16本地DNS服务器IP:172.17.0.3/16攻击机IP:172.17.0.1/162.环境配置2.进行实验环境的配置,包括用户机、DNS服务器配置,验证www.example.com是否解析为你所配置的ip地址。客户......
  • 实验六
    task11#include<stdio.h>2#include<string.h>3#defineN345typedefstructstudent{6intid;7charname[20];8charsubject[20];9doubleperf;10doublemid;11doublefinal;12doubl......
  • 实验6 C语言结构体、枚举应用编程
    实验6C语言结构体、枚举应用编程实验任务1——学生信息处理//P286例8.17//对教材示例代码作了微调,把输出学生信息单独编写成一个函数模块//打印不及格学生信息、打印所有学生信息均调用该模块实现#include<stdio.h>#include<string.h>#defineN3 //运行程序输入......
  • 实验6 C++
    任务四:Vector.hpp#pragmaonce#include<iostream>#include<stdexcept>usingnamespacestd;template<typenameT>classVector{public: Vector(intn,intp=0); Vector(constVector<T>&v); ~Vector(); intget_size()c......
  • 实验6 模板类、文件I/O和异常处理
    任务1Complex.hpp1#pragmaonce23#include<iostream>4#include<stdexcept>56//声明7////////////////////////////////////////////////////8//复数模板类声明9template<typenameT>10classComplex{11public:12......
  • 实验6
    任务4:#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidou......