首页 > 其他分享 >实验六

实验六

时间:2024-06-10 12:33:11浏览次数:8  
标签:int void 978 实验 && printf Date

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-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 void output(Book x[], int n){
38     
39     int i;
40     printf("ISBN号            书名              作者            售价            销售册数\n");
41     for(i=0;i<N;++i)
42      printf("%s       %-25s %-17s     %-10lf          %-d\n",x[i].isbn,x[i].name,x[i].author,x[i].sales_price,x[i].sales_count);
43     
44 }
45 
46 void sort(Book x[],int n){
47     
48     int i,j;
49     Book t;
50     for(i=0;i<N-1;i++)
51       for(j=0;j<N;j++)
52       {
53           if(x[j].sales_count<x[j+1].sales_count)
54                 {
55                 t=x[j];
56                 x[j]=x[j+1];
57                 x[j+1]=t;
58               }
59                 
60       }
61       
62 }
63 
64 double sales_amount(Book x[],int n){
65     int i;
66     double sum=0;
67     for(i=0;i<N;i++)
68     sum=sum+x[i].sales_price*x[i].sales_count;
69     return sum;
70 }

 

 

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();   // 测试函数1: 测试某个日期时这一年第多少天                   
 18 void test2();   // 测试函数2: 测试两个日期先后顺序
 19 
 20 
 21 int main() {
 22     printf("测试1: 输入日期, 打印输出这是一年中第多少天\n");
 23     test1();
 24 
 25     printf("\n测试2: 两个人年龄大小关系\n");
 26     test2();
 27 }
 28 
 29 // 测试函数实现
 30 void test1() {
 31     Date d;
 32     int i;
 33 
 34     printf("输入日期:(以形如2024-06-01这样的形式输入)\n");
 35     for(i = 0; i < 3; ++i) {
 36         input(&d);
 37         printf("%04d-%02d-%02d是这一年中第%d天\n\n", d.year, d.month, d.day, day_of_year(d));
 38     }
 39 }
 40 
 41 void test2() {
 42     Date Alice_birth, Bob_birth;
 43     int i;
 44     int ans;
 45 
 46     printf("输入Alice和Bob出生日期:(以形如2005-08-11这样的形式输入)\n");
 47     for(i = 0; i < 3; ++i) {
 48         input(&Alice_birth);
 49         input(&Bob_birth);
 50         ans = compare_dates(Alice_birth, Bob_birth);
 51         
 52         if(ans == 0)
 53             printf("Alice和Bob一样大\n\n");
 54         else if(ans == -1)
 55             printf("Alice比Bob大\n\n");
 56         else
 57             printf("Alice比Bob小\n\n");
 58     }
 59 }
 60 
 61 void input(Date *pd) {
 62    scanf("%d %d %d",&pd->year,&pd->month,&pd->day);
 63 }
 64 
 65 int day_of_year(Date d) {
 66     int sum=0,i;
 67     if((d.year%4==0&&d.year%100!=0)||(d.year%400==0))
 68     { 
 69       for(i=1;i<=12;i++)
 70       {
 71           if(d.month>i)
 72             {if(i%2==0&&i>=3&&i<=7)
 73                sum=sum+30;
 74              else if(i%2!=0&&i>=3&&i<=7)
 75                sum=sum+31;
 76              else if(i%2==0&&i>=8&&i<=12)
 77                sum=sum+31;
 78              else if(i%2!=0&&i>=8&&i<=12)
 79                sum=sum+30;
 80              else if(i==1)
 81                sum=sum+31;
 82              else if(i==2)
 83                sum=sum+29;
 84             }
 85          else if(d.month==i)
 86              {
 87               sum=sum+d.day;
 88               break;
 89               }
 90           
 91       }
 92     }
 93     else
 94      {
 95          for(i=1;i<=12;i++)
 96       {
 97           if(d.month>i)
 98             {if(i%2==0&&i>=3&&i<=7)
 99                sum=sum+30;
100              else if(i%2!=0&&i>=3&&i<=7)
101                sum=sum+31;
102              else if(i%2==0&&i>=8&&i<=12)
103                sum=sum+31;
104              else if(i%2!=0&&i>=8&&i<=12)
105                sum=sum+30;
106              else if(i==1)
107                sum=sum+31;
108              else if(i==2)
109                sum=sum+28;
110             }
111          else if(d.month==i)
112              {
113                sum=sum+d.day;
114                break;
115              }
116           
117       }
118      }
119      return sum;
120 }
121 
122 int compare_dates(Date d1, Date d2) {
123    if(d1.year>d2.year)
124     return 1;
125    else if(d1.year<d2.year)
126     return -1;
127    else
128        if(d1.month>d2.month)
129          return 1;
130        else if(d1.month<d2.month)
131          return -1;
132          else
133             if(d1.day>d2.day)
134               return 1;
135             else if (d1.day<d2.day)
136               return -1;
137             else
138               return 0;
139    
140 }

 

 

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     int i,len[n],j;
35     for(i=0;i<n;i++)
36     {
37      len[i]=strlen(x[i].password);
38       for(j=0;j<len[i];j++)
39       strcpy(x[i].password+j,"*");    
40       printf("%s        %s  ",x[i].username,x[i].password);
41       if(x[i].type==0)
42        printf("        admin\n");
43       else if(x[i].type==1)
44        printf("        student\n");
45       else
46        printf("        teacher\n");
47     }
48 }

 

标签:int,void,978,实验,&&,printf,Date
From: https://www.cnblogs.com/yzby-/p/18240574

相关文章

  • 实验6
    //task4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidou......
  • 实验六
    task。1#include<stdio.h>#include<string.h>#defineN3//运行程序输入测试时,可以把这个数组改小一些输入测试typedefstructstudent{intid;//学号charname[20];//姓名charsubject[20];//考试科目doubl......
  • 实验六
    task4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidou......
  • 实验Ⅵ
    task4#include<stdio.h>#include<stdlib.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;......
  • 实验6
    task1#include<stdio.h>#include<string.h>#defineN3//运行程序输入测试时,可以把这个数组改小一些输入测试typedefstructstudent{intid;//学号charname[20];//姓名charsubject[20];//考试科目dou......
  • 实验六
    task4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidoutput(Bookx[],intn);voidsort(Bookx[],intn);doubl......
  • 实验6
    #defineN3//运行程序输入测试时,可以把这个数组改小一些输入测试#include<stdlib.h>typedefstructstudent{intid;//学号charname[20];//姓名charsubject[20];//考试科目doubleperf;//平时成绩......
  • 实验6
    task4点击查看代码#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Bo......
  • 实验六
    task4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voido......
  • 实验6
    task1#defineN3//运行程序输入测试时,可以把这个数组改小一些输入测试#include<stdlib.h>typedefstructstudent{intid;//学号charname[20];//姓名charsubject[20];//考试科目doubleperf;//......