首页 > 其他分享 >实验六

实验六

时间:2023-12-17 16:58:48浏览次数:28  
标签:int sales 实验 printf d2 day d1

1.task4

#include <stdio.h>
#define N 10

typedef struct {
    char isbn[20];          // isbn号
    char name[80];          // 书名
    char author[80];        // 作者
    double sales_price;     // 售价
    int  sales_count;       // 销售册数
} Book;

void output(Book x[], int n);
void sort(Book x[], int n);
double sales_amount(Book x[], int n);

int main() {
    Book x[N] = {{"978-7-229-14156-1", "源泉", "安.兰德", 84, 59},
                 {"978-7-5133-5261-1", "李白来到旧金山", "谭夏阳", 48, 16},
                 {"978-7-5617-4347-8", "陌生人日记", "周怡芳", 72.6, 27},
                 {"978-7-5722-5475-8", "芯片简史", "汪波", 74.9, 49},
                 {"978-7-5046-9568-0", "数据化决策", "道格拉斯·W·哈伯德", 49, 42},
                 {"978-7-5133-4388-6", "美好时代的背后", "凯瑟琳.布", 34.5, 39},
                 {"978-7-1155-0509-5", "无穷的开始:世界进步的本源", "戴维·多伊奇", 37.5, 55},
                 {"978-7-5321-5691-7", "何为良好生活", "陈嘉映", 29.5 , 31},
                 {"978-7-5133-5109-6", "你好外星人", "英国未来出版集团", 118, 42},
                 {"978-7-2011-4617-1", "世界尽头的咖啡馆", "约翰·史崔勒基", 22.5, 44}};

    printf("图书销量排名: \n");
    sort(x, N);
    output(x, N);

    printf("\n图书销售总额: %.2f\n", sales_amount(x, N));

    return 0;
}

// 待补足:函数output()实现
// ×××
void output(Book x[], int n){
    int i;
    printf("ISBN号              书名                          作者               售价       销售册数\n");
    for(i = 0; i < n; i++){
        if(x[i].sales_price == (int)x[i].sales_price){
        printf("%-20s%-30s%-20s%-10.0f%-5d\n",x[i].isbn, x[i].name, x[i].author, x[i].sales_price , x[i].sales_count);
        }
        else
        printf("%-20s%-30s%-20s%-10.1f%-5d\n",x[i].isbn, x[i].name, x[i].author, x[i].sales_price , x[i].sales_count);
    }
}

// 待补足:函数sort()实现
// ×××
void sort(Book x[], int n){
    int i, j;
    Book mid;
    for(i = 0; i < n - 1; i++){
        for(j = 0; j < n - 1 - i; j++){
            if(x[j].sales_count < x[j+1].sales_count){
                mid = x[j + 1];
                x[j + 1] = x[j];
                x[j] = mid;
            }
        }
    }
}

// 待补足:函数sales_count()实现
// ×××
double sales_amount(Book x[], int n){
    int i;
    double sum = 0.0;
    for(i = 0; i < n; i++){
        sum += x[i].sales_price * x[i].sales_count;
    }
    return sum;
}

2.task5

#include <stdio.h>

typedef struct {
    int year;
    int month;
    int day;
} Date;

// 函数声明
void input(Date *pd);                   // 输入日期给pd指向的Date变量
int day_of_year(Date d);                // 返回日期d是这一年的第多少天
int compare_dates(Date d1, Date d2);    // 比较两个日期:
                                        // 如果d1在d2之前,返回-1;
                                        // 如果d1在d2之后,返回1
                                        // 如果d1和d2相同,返回0

void test1() {
    Date d;
    int i;

    printf("输入日期:(以形如2023-12-11这样的形式输入)\n");
    for(i = 0; i < 3; ++i) {
        input(&d);
        printf("%d-%02d-%02d是这一年中第%d天\n\n", d.year, d.month, d.day, day_of_year(d));
    }
}

void test2() {
    Date Alice_birth, Bob_birth;
    int i;
    int ans;

    printf("输入Alice和Bob出生日期:(以形如2023-12-11这样的形式输入)\n");
    for(i = 0; i < 3; ++i) {
        input(&Alice_birth);
        input(&Bob_birth);
        ans = compare_dates(Alice_birth, Bob_birth);

        if(ans == 0)
            printf("Alice和Bob一样大\n\n");
        else if(ans == -1)
            printf("Alice比Bob大\n\n");
        else
            printf("Alice比Bob小\n\n");
    }
}

int main() {
    printf("测试1: 输入日期, 打印输出这是一年中第多少天\n");
    test1();

    printf("\n测试2: 两个人年龄大小关系\n");
    test2();
}

// 补足函数input实现
// 功能: 输入日期给pd指向的Date变量
void input(Date *pd) {
    scanf("%d-%d-%d", &pd->year, &pd->month, &pd->day);
}

// 补足函数day_of_year实现
// 功能:返回日期d是这一年的第多少天
int day_of_year(Date d) {
    int n, j, k, flag;
    int i = 0;
    int xiao[5] = {2, 4, 6, 9, 11};
   if(d.month > 2){
       if(d.year % 4 == 0 && d.year % 100 != 0 || d.year % 400 == 0){
           i += 31 + 29;
       }
    else{
        i += 31 + 28;
    }
    for(j = d.month - 1; j > 2; j--){
        flag = 0;
        for(k = 0; k < 5; k++){
            if(j == xiao[k]){
                flag = 1;
                break;
            }
        }
        if(flag == 1){
            i += 30;
        }
        else{
            i += 31;
        }
    }
    i += d.day;
   }
   else if(d.month == 2){
      i = 31 + d.day;
   }
   else{
       i = d.day;
   }
   return i;
}

// 补足函数compare_dates实现
// 功能:比较两个日期:
// 如果d1在d2之前,返回-1;
// 如果d1在d2之后,返回1
// 如果d1和d2相同,返回0
int compare_dates(Date d1, Date d2) {
    int ans;
    if(d1.year == d2.year){
        if(d1.month == d2.month){
            if(d1.day == d2.day){
                ans = 0;
            }
            else if(d1.day > d2.day){
                ans = 1;
            }
            else{
                ans = -1;
            }
        }
        else if(d1.month > d2.month){
            ans = 1;
        }
        else{
            ans = -1;
        }
    }
    else if(d1.year > d2.year){
        ans = 1;
    }
    else{
        ans = -1;
    }
    return ans;
}

3。task 6

#include <stdio.h>
#include <string.h>

enum Role {admin, student, teacher};

typedef struct {
    char username[20];  // 用户名
    char password[20];  // 密码
    enum Role type;     // 账户类型
} Account;


// 函数声明
void output(Account x[], int n);    // 输出账户数组x中n个账户信息,其中,密码用*替代显示

int main() {
    Account x[] = {{"A1001", "123456", student},
                    {"A1002", "123abcdef", student},
                    {"A1009", "xyz12121", student},
                    {"X1009", "9213071x", admin},
                    {"C11553", "129dfg32k", teacher},
                    {"X3005", "921kfmg917", student}};
    int n;
    n = sizeof(x)/sizeof(Account);
    output(x, n);

    return 0;
}

// 待补足的函数output()实现
// 功能:遍历输出账户数组x中n个账户信息
//      显示时,密码字段以与原密码相同字段长度的*替代显示
void output(Account x[], int n) {
    int i, j;
    for(i = 0; i < n; i++){
        for(j = 0; j < strlen(x[i].password); j++){
            x[i].password[j] = '*';
        }
    }
    for(i = 0; i < n; i++){
        printf("%-20s%-20s", x[i].username, x[i].password);
        switch (x[i].type){
            case 0:
                printf("admin\n");
                break;
            case 1:
                printf("student\n");
                 break;
            case 2:
                printf("teacher\n");
                break;
            default:
                break;
        }
    }

}

 

标签:int,sales,实验,printf,d2,day,d1
From: https://www.cnblogs.com/hhhyx/p/17909299.html

相关文章

  • 实验6
    test4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidoutput(Bookx[],intn);voidsort(Book......
  • 实验6 模板类、文件I/O和异常处理
    实验任务1Complex.hpp#pragmaonce#include<iostream>#include<stdexcept>template<typenameT>classComplex{public:Complex(Tr=0,Ti=0):real{r},imag{i}{}Complex(constComplex<T>&c):real{c.real},imag{c.......
  • 实验六
    4、试验任务4源代码1#include<stdio.h>2#defineN1034typedefstruct{5charisbn[20];//isbn号6charname[80];//书名7charauthor[80];//作者8doublesales_price;//售价9intsales......
  • 实验7
    test4代码#include<stdio.h>#defineN2intmain(){char*x[N]={"0123456789-0123456789","nuist2023-nuist2024"};inti;FILE*fp;fp=fopen("data4.txt","w");......
  • 实验6
    1#include<stdio.h>2#defineN1034typedefstruct{5charisbn[20];//isbn号6charname[80];//书名7charauthor[80];//作者8doublesales_price;//售价9intsales_count;//销售......
  • 实验三-电子公文传输系统1-个人贡献
    实验三-电子公文传输系统1-个人贡献1简述你完成的工作作为组长,分配任务到各个小组组员上,组织统筹组员完成各项工作。参与组内博客和文档的编写工作。参与后端设计的代码编写和加密通信过程的实现2你们小组总共的代码行数,你贡献的代码行数?相关代码链接?总共代码行数为5535......
  • 实验6
    任务4#include<iostream>#include"Vector.hpp"usingnamespacestd;template<typenameT>voidoutput(constVector<T>&v){for(autoi=0;i<v.get_size();i++){cout<<v.at(i)<<",";......
  • 实验6 C语言结构体、枚举应用编程
    实验任务1源代码:1#include<stdio.h>2#include<string.h>3#defineN10//运行程序输入测试时,可以把这个数组改小一些输入测试45typedefstructstudent{6intid;//学号7charname[20];//姓名8......
  • 实验六
    #pragmaonce#include<iostream>#include<stdexcept>usingnamespacestd;template<typenameT>classVector{private:intsize;T*ptr;public:Vector(intn):size{n}{if(n<0)throwstd::leng......
  • 实验7
    4.实验任务4task4.c源码:#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charch;intcnt=0;fp=fopen("data4.txt","r");if(fp==NULL){printf(&qu......