首页 > 其他分享 >实验6

实验6

时间:2024-12-19 20:53:37浏览次数:10  
标签:int printf 实验 year d2 day d1

任务4

源代码

#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-5327-6082-4", "门将之死", "罗纳德.伦", 42, 51},
                  {"978-7-308-17047-5", "自由与爱之地:入以色列记", "云也退", 49 , 30},
                  {"978-7-5404-9344-8", "伦敦人", "克莱格泰勒", 68, 27},
                  {"978-7-5447-5246-6", "软件体的生命周期", "特德姜", 35, 90}, 
                  {"978-7-5722-5475-8", "芯片简史", "汪波", 74.9, 49},
                  {"978-7-5133-5750-0", "主机战争", "布莱克.J.哈里斯", 128, 42},
                  {"978-7-2011-4617-1", "世界尽头的咖啡馆", "约翰·史崔勒基", 22.5, 44},
                  {"978-7-5133-5109-6", "你好外星人", "英国未来出版集团", 118, 42},
                  {"978-7-1155-0509-5", "无穷的开始:世界进步的本源", "戴维·多伊奇", 37.5, 55},
                  {"978-7-229-14156-1", "源泉", "安.兰德", 84, 59}};
    
    printf("图书销量排名(按销售册数): \n");
    sort(x, N);
    output(x, N);

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

void output(Book x[],int n){
    int i;
    printf("ISBN号             书名                       作者              售价     销售册数\n");
    for(i=0;i<n;++i){
        printf("%10s  %-25s %-20s %-10.0lf %d\n",x[i].isbn,x[i].name,x[i].author,x[i].sales_price,x[i].sales_count);
    } 
}

void sort(Book x[], int n){
    int i, j;
    Book t;
    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) {
                t = x[j];
                x[j] = x[j + 1];
                x[j + 1] = t;
            }
        }
    }
}

double sales_amount(Book x[], int n){
    int i;
    double a=0; 
    for(i=0;i<n;++i){
        a+=x[i].sales_price*x[i].sales_count; 
    }
return a;
}

运行结果

 

 

 

任务5

源代码

 

#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("输入日期:(以形如2024-12-16这样的形式输入)\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出生日期:(以形如2024-12-16这样的形式输入)\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 days_month[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    int day_count = 0;
int i;
    // 检查是否为闰年
    if ((d.year % 4 == 0 && d.year % 100 != 0) || (d.year % 400 == 0)) {
        days_month[1] = 29; // 二月有29天
    }

    // 累加前几个月的天数
    for (i = 0; i < d.month - 1; i++) {
        day_count += days_month[i];
    }

    // 加上当前月的天数
    day_count += d.day;

    return day_count;
}

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

    if (d1.month != d2.month) {
        return d1.month < d2.month ? -1 : 1;
    }

    if (d1.day != d2.day) {
        return d1.day < d2.day ? -1 : 1;
    }

    return 0; // 日期相同
}

 

 

运行效果

 

 

 

任务6

源代码

#include <stdio.h>
#include <string.h>
#define N 100 


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;
int a;
char b[N][20]; 
for(i=0;i<n;++i){ 
  printf("%-10s",x[i].username);
a=strlen(x[i].password);
for(j=0;j<a;j++){

    b[i][j]='*';

}
 b[i][a] = '\0'; 
printf("%-10s",b[i]);


      switch (x[i].type) {
            case admin:
                printf("%30s","admin");
                break;
            case student:
                printf("%30s","student");
                break;
            case teacher:
                printf("%30s","teacher");
                break;
            default:
                printf("%30s","unknown");
        }
    
    printf("\n");
  
    
}
}

 

 

 

运行效果

 

 

 

任务7

源代码

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

typedef struct {
    char name[20];      // 姓名
    char phone[12];     // 手机号
    int  vip;           // 是否为紧急联系人,是取1;否则取0
} Contact; 


// 函数声明
void set_vip_contact(Contact x[], int n, char name[]);  // 设置紧急联系人
void output(Contact x[], int n);    // 输出x中联系人信息
void display(Contact x[], int n);   // 按联系人姓名字典序升序显示信息,紧急联系人最先显示


#define N 10
int main() {
    Contact list[N] = {{"刘一", "15510846604", 0},
                       {"陈二", "18038747351", 0},
                       {"张三", "18853253914", 0},
                       {"李四", "13230584477", 0},
                       {"王五", "15547571923", 0},
                       {"赵六", "18856659351", 0},
                       {"周七", "17705843215", 0},
                       {"孙八", "15552933732", 0},
                       {"吴九", "18077702405", 0},
                       {"郑十", "18820725036", 0}};
    int vip_cnt, i;
    char name[20];

    printf("显示原始通讯录信息: \n"); 
    output(list, N);

    printf("\n输入要设置的紧急联系人个数: ");
    scanf("%d", &vip_cnt);
    
    printf("输入%d个紧急联系人姓名:\n", vip_cnt);
    for(i = 0; i < vip_cnt; ++i) {
        scanf("%s", name);
        set_vip_contact(list, N, name);
    }

    printf("\n显示通讯录列表:(按姓名字典序升序排列,紧急联系人最先显示)\n");
    display(list, N);

    return 0;
}

// 补足函数set_vip_contact实现
// 功能:将联系人数组x中,联系人姓名与name一样的人,设置为紧急联系人(即成员vip值设为1)
void set_vip_contact(Contact x[], int n, char name[]) {
    int i;
    for( i = 0 ;i<n ;++i){
        if(strcmp(x[i].name,name)==0)
            x[i].vip=1;

    }
}

// 补足函数display实现
// 功能: 显示联系人数组x中的联系人信息
//      按姓名字典序升序显示, 紧急联系人显示在最前面
void display(Contact x[], int n) {
    int i,j,k;
    Contact a,b;
         
         for (i = 0; i < n - 1; i++) {
        for (j = 0; j < n - 1 - i; j++) {
        
         if (strcmp(x[j].name, x[j + 1].name) > 0){
                a = x[j];
                x[j] = x[j + 1];
                x[j + 1] = a;
            }
   
        }
    }
    
    
       for (i = 0; i < n - 1; i++) {
        for (j = 0; j < n - 1 - i; j++) {
                 if (x[j + 1].vip == 1 && x[j].vip == 0) {
                a = x[j];
                x[j] = x[j + 1];
                x[j + 1] = a;
            }
        
    }
}    

      
    
    for(k=0;k<n;++k){
    printf("%-20s %-20s ",x[k].name,x[k].phone);
           if(x[k].vip){
            printf("%5s", "*");
        printf("\n");
    }
else
printf("\n");
}
    
}

void output(Contact x[], int n) {
    int i;

    for(i = 0; i < n; ++i) {
        printf("%-10s%-15s", x[i].name, x[i].phone);
        if(x[i].vip)
            printf("%5s", "*");
        printf("\n");
    }
}

 

 

运行结果

 

标签:int,printf,实验,year,d2,day,d1
From: https://www.cnblogs.com/lhqweasd/p/18617472

相关文章

  • 实验六
    任务4:源码:1#include<iostream>23usingnamespacestd;45template<typenameT>6classVector{7private:8T*head;9intsize;10intlength;11public:12Vector(intnum);13Vector(intnum,Tdata);14......
  • 《网络与系统攻防技术》实验四实验报告
    1.实验要求1.1实验内容一、恶意代码文件类型标识、脱壳与字符串提取对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下:(1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具;(2)使用超级巡警脱壳......
  • 20222307 2024-2025-1 《网络与系统攻防技术》实验八实验报告
    1.实验内容(1)Web前端HTML能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML。(2)Web前端javascipt理解JavaScript的基本功能,理解DOM。在(1)的基础上,编写JavaScript验证用户名、密码的规则。在用户点击登陆按钮后回显“欢迎+输入的用户名”尝......
  • 实验6
    TASK11#include<stdio.h>2#include<string.h>3#defineN345typedefstructstudent6{7intid;8charname[20];9charsubject[20];10doubleperf;11doublemid;12doublefinal;13......
  • 实验6
    源代码4:1#include<stdio.h>2#defineN1034typedefstruct{5charisbn[20];//isbn号6charname[80];//书名7charauthor[80];//作者8doublesales_price;//售价9intsales_count;......
  • 实验六
    实验11//P286例8.172//对教材示例代码作了微调,把输出学生信息单独编写成一个函数模块3//打印不及格学生信息、打印所有学生信息均调用该模块实现45#include<stdio.h>6#include<string.h>7#defineN3//运行程序输入测试时,可以把N改小一......
  • 实验6
    task1:#include<stdio.h>#include<string.h>#include<stdlib.h>#defineN3typedefstructstudent{intid;charname[20];charsubject[20];doubleperf;doublemid;doublefinal;doubletotal;charlevel......
  • 实验6
    任务4代码1#include<stdio.h>2#defineN1034typedefstruct{5charisbn[20];//isbn号6charname[80];//书名7charauthor[80];//作者8doublesales_price;//售价9intsales_count;......
  • 20222402 2024-2025-2 《网络与系统攻防技术》实验八实验报告
    1.实验内容1.1本周学习内容Web前端:负责开发用户所看到的内容。(1)HTML(2)JavaScript(Js)(3)CSS(4)Web前端框架Web后端:主要使用各种库,API,Web服务等技术搭建后端应用体系,确保各种Web服务接口之间的正确通信。比如处理前端用户发起的请求,各种业务逻辑的操作,最后与数据......
  • 实验6
    task.4#include<stdio.h>#defineN10typedefstruct{charisbn[20];charname[80];charauthor[80];doublesales_price;intsales_count;}Book;voidoutput(Bookx[],intn);voidso......