首页 > 其他分享 >实验六

实验六

时间:2023-12-17 20:12:18浏览次数:27  
标签:int printf 实验 year Date day d1

任务四

 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-229-14156-1", "源泉", "安.兰德", 84, 59},
18                  {"978-7-5133-5261-1", "李白来到旧金山", "谭夏阳", 48, 16},
19                  {"978-7-5617-4347-8", "陌生人日记", "周怡芳", 72.6, 27},
20                  {"978-7-5722-5475-8", "芯片简史", "汪波", 74.9, 49},
21                  {"978-7-5046-9568-0", "数据化决策", "道格拉斯·W·哈伯德", 49, 42},
22                  {"978-7-5133-4388-6", "美好时代的背后", "凯瑟琳.布", 34.5, 39},
23                  {"978-7-1155-0509-5", "无穷的开始:世界进步的本源", "戴维·多伊奇", 37.5, 55},
24                  {"978-7-5321-5691-7", "何为良好生活", "陈嘉映", 29.5 , 31},
25                  {"978-7-5133-5109-6", "你好外星人", "英国未来出版集团", 118, 42},
26                  {"978-7-2011-4617-1", "世界尽头的咖啡馆", "约翰·史崔勒基", 22.5, 44}};
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     int i;
40     for(i=0;i<n;i++){
41         printf("%-20s%-30s%-20s%-30.2f%d\n",x[i].isbn,x[i].name,x[i].author,x[i].sales_price,x[i].sales_count);
42     }
43 }
44 
45 
46 // 待补足:函数sort()实现
47 void sort(Book x[],int n){
48     int i,j;
49     int t;
50     for(i=0;i<n;i++){
51         for(j=0;j<n-i-1;j++)
52             if(x[j].sales_count<x[j+1].sales_count)
53                 t=x[j].sales_count;
54                 x[j].sales_count=x[j+1].sales_count;
55                 x[j+1].sales_count=t;
56     }
57 }
58 
59 
60 // 待补足:函数sales_count
61  double sales_amount(Book x[],int n){
62      int i;
63      double s=0.0;
64      for(i=0;i<n;i++){
65          s+=x[i].sales_price*x[i].sales_count;
66      }
67      return s;
68 }

 

 

 

 

截图

任务五

  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("输入日期:(以形如2023-12-11这样的形式输入)\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出生日期:(以形如2023-12-11这样的形式输入)\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\n",&pd->year,&pd->month,&pd->day);
 60     
 61 }
 62 
 63 // 补足函数day_of_year实现
 64 // 功能:返回日期d是这一年的第多少天
 65 int day_of_year(Date d) {
 66     int i;
 67     int s=0;
 68     for(i=1;i<d.month;i++)
 69     {
 70         switch(i){
 71             case 1:
 72             case 3:
 73             case 5:
 74             case 7:
 75             case 8:
 76             case 10:
 77             case 12:
 78                 s+=31;
 79                 continue;
 80             case 2:
 81                 if(d.year%400==0)
 82                 {
 83                     s+=29;
 84                 }
 85                 else
 86                     {
 87                     s+=28;
 88                 }
 89                 continue;
 90 
 91             default: s+=30;
 92         }
 93 
 94 }
 95 s+=d.day;
 96 return s;
 97 }
 98 
 99 // 补足函数compare_dates实现
100 // 功能:比较两个日期: 
101 // 如果d1在d2之前,返回-1;
102 // 如果d1在d2之后,返回1
103 // 如果d1和d2相同,返回0
104 int compare_dates(Date d1, Date d2) {
105   if(d1.year>d2.year)
106       {return -1;
107   }
108   else if(d1.year>d2.year)
109   {
110       return 1;
111   }
112   else if(d1.year==d2.year)
113   {
114       if(d1.month<d2.month){
115           return -1;
116       }
117       else if(d1.month>d2.month){
118           return 1;
119       }
120       else if(d1.month==d2.month){
121           if(d1.day<d2.day)
122           {
123               return -1;
124           }
125           else if(d1.day>d2.day){
126               return 1;
127           }
128           else if(d1.day==d2.day){
129               return 0;
130           }
131       }
132   }
133 }

截图

任务六

 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 
31 void output(Account x[], int n) {
32      int i,j,k;
33      int s=strlen(x[i].password);
34      for(i=0;i<n;i++){
35          printf("%-15s",x[i].username);
36     
37 
38          for(j=0;j<s;j++){
39              printf("*");
40          }
41 
42          switch(x[i].type){
43          case admin:printf("admin\n");break;
44          case teacher:printf("teacher\n");break;
45          case student:printf("student\n");break;
46          }
47 
48 }
49 }

截图

 

标签:int,printf,实验,year,Date,day,d1
From: https://www.cnblogs.com/cwc6276/p/17909689.html

相关文章

  • 实验六
    task4.hpp#include<iostream>#include<stdexcept>#include<cassert>usingnamespacestd;template<typenameT>classVector{private:T*ptr;intsize;public:Vector(intsize){if(size<0)......
  • 实验六
    4.hpp#include<iostream>#include<stdexcept>template<typenameT>classVector{private:intsize;T*p;public:Vector<T>(ints);Vector<T>(ints,Tvalue);Vector<T>(Vector<T>&x);......
  • 渗透测试实验报告一
    1. 实验目的和要求实验目的:理解网络扫描、网络侦察的作用;通过搭建网络渗透测试平台,了解并熟悉常用搜索引擎、扫描工具的应用,通过信息收集为下一步渗透工作打下基础。系统环境:KaliLinux2、Windows网络环境:交换网络结构2.实验步骤 1:利用Google语法搜索site:mit.eduinti......
  • 实验六
    实验任务4vector.hpp#include<iostream>#include<stdexcept>#include<cassert>usingnamespacestd;template<typenameT>classVector{private:T*ptr;intsize;public:Vector(intsize){if(size<0)......
  • 实验三-电子公文传输系统1-个人贡献
    实验三-电子公文传输系统1-个人贡献任务详情1简述你完成的工作2你们小组总共的代码行数,你贡献的代码行数?相关代码链接?3你们小组总共的文档数?你贡献的文档数?相关链接?主要处理完成的工作1我完成了项目冲刺的5和6两天的实现情况的撰写,编写了部分后端代码和系统的使用指南2......
  • 实验6
    任务1:#define_CRT_SECURE_NO_WARNINGS//P286例8.17//对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块//打印不及格学生信息和所有学生信息程分别调用#include<stdio.h>#include<string.h>#defineN 3 //运行程序输入测试时,可以把这个数组改小一......
  • 实验7_文件应用编程
    4.task_4 1#include<stdio.h>2#include<string.h>3#defineN1000045intmain()6{7intcount,i,t=0;8charx[N];9FILE*fp;10fp=fopen("D:\\data4.txt","r");11while(!feof(fp))......
  • 实验6
    实验1代码1//P286例8.172//对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块3//打印不及格学生信息和所有学生信息程分别调用45#include<stdio.h>6#include<string.h>7#defineN3//运行程序输入测试时,可以把这个数......
  • 实验三-电子公文传输系统1-个人贡献
    个人贡献1、简述你完成的工作部分前端代码及文档撰写github项目管理协助设计系统前端布局2、你们小组总共的代码行数,你贡献的代码行数?相关代码链接?贡献的代码行数:985https://github.com/hexaosf/codegramhttps://github.com/hexaosf/codegram/blob/608d2056e40859360e0ea6......
  • 人工智能-A*算法-最优路径搜索实验
    上次学会了《A*算法-八数码问题》,初步了解了A*算法的原理,本次再用A*算法完成一个最优路径搜索实验。 一、实验内容1.设计自己的启发式函数。2.在网格地图中,设计部分障碍物。3.实现A*算法,搜索一条最优路径。 二、A*算法实现步骤1.初始化:设置起始节点和目标节点,并创建一......