首页 > 其他分享 >实验六

实验六

时间:2024-12-21 13:30:52浏览次数:3  
标签:int void vip 实验 printf output 31

task4

 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("ISBN号             书名                          作者              售价       销售册数\n ");
42     for (i=0;i<n;i++)
43     {
44         printf("%-5s %-30s %-18s %-10g %.0d\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 {
51     int i,j;
52     Book t[100];
53     for(i=0;i<n-1;i++)
54     {
55         for(j=0;j<n-1-i;j++)
56         {
57             if(x[j].sales_count<x[j+1].sales_count)
58             {
59                 t[0]=x[j];
60                 x[j]=x[j+1];
61                 x[j+1]=t[0];
62             }
63         }
64     }
65 }
66 
67 // 待补足:函数sales_count()实现
68 double sales_amount(Book x[],int n)
69 {
70     double sum=0;
71     int i;
72     for(i=0;i<n;i++)
73     {
74         sum=sum+x[i].sales_price*x[i].sales_count;
75     }
76     return sum;
77 }

task5

  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 {
 60     scanf("%d-%d-%d",&pd->year,&pd->month,&pd->day);
 61 }
 62 
 63 // 补足函数day_of_year实现
 64 // 功能:返回日期d是这一年的第多少天
 65 int day_of_year(Date d)
 66 {
 67     int m[12]={31,28,31,30,31,30,31,31,30,31,30,31},n=d.month,i,sum=0;
 68     if(d.year%4==0)
 69     {
 70         m[1]=29;
 71     }
 72     for(i=0;i<n-1;i++)
 73     {
 74         sum+=m[i];
 75     }
 76     sum+=d.day;
 77     return sum;
 78 }
 79 
 80 // 补足函数compare_dates实现
 81 // 功能:比较两个日期: 
 82 // 如果d1在d2之前,返回-1;
 83 // 如果d1在d2之后,返回1
 84 // 如果d1和d2相同,返回0
 85 int compare_dates(Date d1, Date d2) 
 86 {
 87     if(d1.year>d2.year)
 88     {
 89         return 1;
 90     }
 91     else if(d1.year<d2.year)
 92     {
 93         return -1;
 94     }
 95     else
 96     {
 97         if(day_of_year(d1)>day_of_year(d2))
 98         {
 99             return 1;
100         }
101         if(day_of_year(d1)<day_of_year(d2))
102         {
103             return -1;
104         }
105         if(day_of_year(d1)==day_of_year(d2))
106         {
107             return 0;
108         }
109     }
110 }

task6

 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 {
35     int i,j,l;
36     char word[20];
37 
38     for(i=0;i<n;++i)
39     {
40         l=strlen(x[i].password);
41         for(j=0;j<l;++j)
42             {
43                 word[j]='*';
44             }
45         word[j]='\0';
46         printf("%s\t%-20s",x[i].username,word);
47         switch(x[i].type)
48         {
49             case 0:printf("admin\n");break;
50             case 1:printf("student\n");break;
51             case 2:printf("teacher\n");break;
52             default:printf("somethint must be wrong");break;
53         }
54     }
55 }

task7

  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 {
 54     int i;
 55     for(i=0;i<n;i++)
 56     {
 57         if(strcmp(x[i].name,name)==0)
 58         {
 59            x[i].vip=1;
 60         }
 61     }
 62 }
 63 
 64 // 补足函数display实现
 65 // 功能: 显示联系人数组x中的联系人信息
 66 //      按姓名字典序升序显示, 紧急联系人显示在最前面
 67 void display(Contact x[], int n) 
 68 {
 69     Contact t;
 70     int i,j;
 71     for(i=0;i<n-1;i++)
 72     {
 73         for(j=0;j<n-i-1;j++)
 74         {
 75             if (x[j].vip<x[j+1].vip) 
 76             {
 77                 t=x[j];
 78                 x[j]=x[j+1];
 79                 x[j+1]=t;
 80             } 
 81             else if(x[j].vip==x[j+1].vip&&strcmp(x[j].name,x[j+1].name)>0) 
 82             {
 83                 t=x[j];
 84                 x[j]=x[j+1];
 85                 x[j+1]=t;
 86             }
 87         }
 88     }
 89     output(x,n);
 90 }
 91 
 92 void output(Contact x[], int n) {
 93     int i;
 94 
 95     for(i = 0; i < n; ++i) {
 96         printf("%-10s%-15s", x[i].name, x[i].phone);
 97         if(x[i].vip)
 98             printf("%5s", "*");
 99         printf("\n");
100     }
101 }

 

标签:int,void,vip,实验,printf,output,31
From: https://www.cnblogs.com/yueTO233/p/18620678

相关文章

  • 《DNK210使用指南 -CanMV版 V1.0》第四十五章 人脸识别实验
    第四十五章人脸识别实验1)实验平台:正点原子DNK210开发板2)章节摘自【正点原子】DNK210使用指南-CanMV版V1.03)购买链接:https://detail.tmall.com/item.htm?&id=7828013987504)全套实验源码+手册+视频下载地址:http://www.openedv.com/docs/boards/k210/ATK-DNK210.html5)正点原......
  • 【计算机组成原理】实验五 :顺序程序及分支程序设计实验
    实验五顺序程序及分支程序设计实验一、实验目的熟悉顺序程序结构和分支程序结构二、实验要求按照实验步骤完成实验项目,熟悉寄存器的存储、寻址方式。熟悉顺序程序结构和分支程序结构。三、实验步骤和结果3.1基本的调试指令(1)-D偏移地址:用于查看从指定偏移地址开......
  • 实验6
    #include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidoutput(B......
  • 20222318 2024-2025-1 《网络与系统攻防技术》实验八实验报告
    1.实验内容(1)Web前端HTML能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML。(2)Web前端javascipt理解JavaScript的基本功能,理解DOM。在(1)的基础上,编写JavaScript验证用户名、密码的规则。在用户点击登陆按钮后回显“欢迎+输入的用户名”尝......
  • 20222234 石国力 《网络与系统攻防技术》 实验八
    1.实验内容1.Web前端HTML能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML。2.Web前端javascipt理解JavaScript的基本功能,理解DOM。在1的基础上,编写JavaScript验证用户名、密码的规则。在用户点击登陆按钮后回显“欢迎+输入的用户名”尝试......
  • 实验二
    实验2类和对象_基础编程1实验任务1t.h#pragmaonce#include<string>//类T:声明classT{//对象属性、方法public:T(intx=0,inty=0);//普通构造函数T(constT&t);//复制构造函数T(T&&t);//移动构造函数~T();//析构函数voidadjust(intratio);......
  • 20222418 2024-2025-1《网络与系统攻防技术》实验八实验报告
    1.实验内容(1)Web前端HTML能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML。(2)Web前端javascipt理解JavaScript的基本功能,理解DOM。在(1)的基础上,编写JavaScript验证用户名、密码的规则。在用户点击登陆按钮后回显“欢迎+输入的用户名”尝......
  • 实验六
    task1:1#include<stdio.h>2#include<string.h>3#defineN24typedefstructstudent{5intid;6charname[20];7charsubject[20];8doubleperf;9doublemid;10doublefinal;11doubletot......
  • 实验六
    task4:源代码:#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;......
  • 实验6
    task1:Complex.hpp#pragmaonce#include<iostream>#include<stdexcept>//声明//////////////////////////////////////////////////////复数模板类声明template<typenameT>classComplex{public:Complex(Tr=0,Ti=0);Complex(con......