首页 > 其他分享 >实验6

实验6

时间:2024-06-08 10:00:15浏览次数:14  
标签:head int void st 实验 printf Film

1
`#include<stdio.h>

include<string.h>

define N 3

typedef struct student{
int id;
char name[20];
char subject[20];
double perf;
double mid;
double final;
double total;
char level[10];
}STU;
void input(STU[],int);
void output(STU[],int);
void calc(STU[],int);
int fail(STU[],STU[],int);
void sort(STU[],int);
int main(){
STU st[N],fst[N];
int k;
printf("录入学生成绩信息:\n");
input(st,N);
printf("\n成绩处理...\n");
calc(st,N);
k=fail(st,fst,N);
sort(st,N);
printf("\n学生排名情况:\n");
output(st,N);
printf("\n不及格学生信息:\n");
output(fst,k);
return 0;
}
void input(STU st[],int n){
int i;
for(i=0;i<n;i++)
scanf("%d %s %s %lf %lf %lf",&st[i].id,st[i].name,st[i].subject,&st[i].perf,&st[i].mid,&st[i].final);
}
void output(STU st[],int n){
int i;
printf("--------------------\n");
printf("学号 姓名 科目 平时 期中 期末 总评 等级\n");
for(i=0;i<n;i++)
printf("%d %-6s %-4s %-4.0f %-4.0f %-4.0f %-4.1f %s\n",st[i].id,st[i].name,st[i].subject,st[i].perf,st[i].mid,st[i].final,st[i].total,st[i].level);
}
void calc(STU st[],int n){
int i;
for(i=0;i<n;i++){
st[i].total=st[i].perf0.2+st[i].mid0.2+st[i].final*0.6;
if(st[i].total>=90)
strcpy(st[i].level,"you");
else if(st[i].total>=80&&st[i].total<90)
strcpy(st[i].level,"liang");
else if(st[i].total>=70&&st[i].total<80)
strcpy(st[i].level,"zhong");
else if(st[i].total>=60&&st[i].total<70)
strcpy(st[i].level,"jige");
else if(st[i].total<60)
strcpy(st[i].level,"bujige");
}
}
int fail(STU st[],STU t[],int n){
int i,cnt=0;
for(i=0;i<n;i++)
if(st[i].total<60)
t[cnt++]=st[i];
return cnt;
}
void sort(STU st[],int n){
int i,j;
STU t;
for(i=0;i<n-1;i++)
for(j=0;j<n-1-i;j++)
if(st[j].total<st[j+1].total){
t=st[j];
st[j]=st[j+1];
st[j+1]=t;
}
}`

2
`#include <stdio.h>

include <string.h>

define N 10

define M 80

typedef struct {
char name[M];
char author[M];
} Book;

int main() {
Book x[N] = { {"《一九八四》", "乔治.奥威尔"},
{"《美丽新世界》", "赫胥黎"},
{"《昨日的世界》", "斯蒂芬.茨威格"},
{"《万历十五年》", "黄仁宇"},
{"《一只特立独行的猪》", "王小波"},
{"《百年孤独》", "马尔克斯"},
{"《查令十字街84号》", "海莲.汉芙"},
{"《只是孩子》", "帕蒂.史密斯"},
{"《刀锋》", "毛姆"},
{"《沉默的大多数》", "王小波"} };
Book *ptr;
int i;
char author[M];

printf("所有图书信息: \n");
for(ptr = x; ptr < x + N; ++ptr)
    printf("%-30s%-30s\n", ptr->name, ptr->author);


printf("\n输入作者名: ");
gets(author);
for(ptr = x; ptr < x + N; ++ptr)
    if(strcmp(ptr->author, author) == 0) {
        printf("%-30s%-30s\n", ptr->name, ptr->author);
    }

return 0;

}`

3.1
`#include <stdio.h>

include <stdlib.h>

define N 80

typedef struct FilmInfo {
char name[N];
char director[N];
char region[N];
int year;
struct FilmInfo *next;
} Film;

void output(Film *head);
Film *insert(Film *head, int n);

int main() {
int n;
Film *head;

head = NULL;
printf("输入影片数目: ");
scanf("%d", &n);


head = insert(head, n);


printf("\n所有影片信息如下: \n");
output(head);

return 0;

}

Film *insert(Film *head, int n) {
int i;
Film *p;

for(i = 1; i <= n; ++i) {
    p = (Film *)malloc(sizeof(Film));
    printf("请输入第%d部影片信息: ", i);
    scanf("%s %s %s %d", p->name, p->director, p->region, &p->year);
    

    p->next = head;
    head = p;  
}

return head;

}

void output(Film *head) {
Film *p;

p = head;
while(p != NULL) {
    printf("%-20s %-20s %-20s %d\n", p->name, p->director, p->region, p->year);
    p = p -> next;
}

}`

3.2
`#include <stdio.h>

include <stdlib.h>

define N 80

typedef struct FilmInfo {
char name[N];
char director[N];
char region[N];
int year;
struct FilmInfo *next;
} Film;

void output(Film *head);
Film *insert(Film *head, int n);

int main() {
int n;
Film *head;
Film *p;

p = (Film *)malloc(sizeof(Film));
p->next = NULL;
head = p;       

printf("输入影片数目: ");
scanf("%d", &n);


head = insert(head, n);


printf("\n所有影片信息如下: \n");
output(head);

return 0;

}

Film *insert(Film *head, int n) {
int i;
Film *p;

for(i = 1; i <= n; ++i) {
    p = (Film *)malloc(sizeof(Film));
    printf("请输入第%d部影片信息: ", i);
    scanf("%s %s %s %d", p->name, p->director, p->region, &p->year);
    
   
    p->next = head->next;
    head->next = p;
}

return head;

}

void output(Film *head) {
Film *p;

p = head->next;
while(p != NULL) {
    printf("%-20s %-20s %-20s %d\n", p->name, p->director, p->region, p->year);
    p = p -> next;
}

}`

4
`#include <stdio.h>

define N 10

typedef struct {
char isbn[20];
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;

}

void output(Book x[], int n){
int i;
for(i=0;i<n;i++){
printf("%s %s %s %lf %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<i-1-n;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){
double s,sum=0;
int i;
for(i=0;i<n;i++){
s=x[i].sales_price * x[i].sales_count;
sum+=s;
}
return sum;
}`

5
`#include <stdio.h>

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

void input(Date *pd);
int day_of_year(Date d);
int compare_dates(Date d1, Date d2);

void test1();
void test2();

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

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

}

void test1() {
Date d;
int i;

printf("输入日期:(以形如2024-06-01这样的形式输入)\n");
for(i = 0; i < 3; ++i) {
    input(&d);
    printf("%04d-%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出生日期:(以形如2005-08-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");
}

}

void input(Date *pd) {
scanf("%04d-%02d-%02d",&(pd->year),&(pd->month),&(pd->day));
}

int day_of_year(Date d) {
int s,n=0,i;
int map[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
if((d.year % 40 && d.year % 100 != 0)||d.year%4000)
map[2]=29;
if(d.month==1)
n=d.day;
if(d.month != 1){
for(i=1;i<=d.month-1;i++){
s=map[i];
n+=s;
}
n=n+d.day;
}
return n;
}

int compare_dates(Date d1, Date d2) {
int a,b;
a=day_of_year(d1);
b=day_of_year(d2);
if(d1.year<d2.year)
return -1;
if(d1.year>d2.year)
return 1;
else{
if(a<b)
return -1;
if(a==b)
return 0;
if(a>b)
return 1;
}
}`

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);

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;

}

void output(Account x[], int n) {
int i, j;
char s[][10]={"admin","student","teacher"};

for(i = 0; i < n; i++) {
    int len = strlen(x[i].password);
    printf("%s\t\t", x[i].username);

    for(j = 0; j < len; j++) {
        printf("*");
    }

    if(len < 8)
        printf("\t\t");
    else
        printf("\t");

    switch(x[i].type) {
        case 0:
            printf("%s\n",s[0]);
            break;
        case 1:
            printf("%s\n",s[1]);
            break;
        default:
            printf("%s\n",s[2]);
    }
}

}`

标签:head,int,void,st,实验,printf,Film
From: https://www.cnblogs.com/FuBuKi2/p/18238337

相关文章

  • JAVA计算机毕业设计基于的课程实验预约系统(附源码+springboot+开题+论文)
    本系统(程序+源码)带文档lw万字以上 文末可获取一份本项目的java源码和数据库参考。系统程序文件列表开题报告内容研究背景:在当今教育环境中,实验教学是培养学生实践能力和科学素养的重要环节。然而,随着学生人数的增加和实验教学资源的有限性,实验预约和管理变得愈发复杂。传......
  • ROS实验课(二)
    前言此篇博客记录ROS实验课二的内容,基于教材《ROS机器人开发技术基础》。16.04的Ubuntu版本,7.16.1的gazebo版本,ROS版本为kinetic。老师的本意是我们逐个学习urdf建模与gazebo控制,熟悉整个流程,在提供的教学包的基础上做出自己的改进。在命令行输入以下指令下载教学包:gitcl......
  • 算法分析与设计实验一、分治策略实现大整数乘法
    目录实验目的和要求实验环境实验内容与过程 实验内容关键代码 流程图实验结果与分析(实验结果截图)结果分析:实验心得实验目的和要求分治策略实现大整数乘法。设计并使时间复杂度为O(n1.59)。实验环境Windows11Pycharm2021实验内容与过程 实验内容对输入的......
  • 实验三 功能模型设计
      功能模型设计1. 实验目的掌握面向对象分析中功能模型设计的过程及注意事项2. 实验环境软件平台:MicrosoftWindows 操作系统,软件工具:MicrosoftVISIO;StarUML;EnterPriseArchitect等3. 实验原理使用用例方法来描述系统功能需求的过程,就是用例建模,它是实现"功......
  • 【计算机毕业设计】ssm714实验室预约管理系统+vue
    身处网络时代,随着网络系统体系发展的不断成熟和完善,人们的生活也随之发生了很大的变化,人们在追求较高物质生活的同时,也在想着如何使自身的精神内涵得到提升,而读书就是人们获得精神享受非常重要的途径。为了满足人们随时随地只要有网络就可以看书的要求,实验室预约管理被开发......
  • 实验3:OpenFlow协议分析实践
    一、实验目的能够运用wireshark对OpenFlow协议数据交互过程进行抓包;能够借助包解析工具,分析与解释OpenFlow协议的数据包交互过程与机制。二、实验环境下载虚拟机软件OracleVisualBox;在虚拟机中安装Ubuntu20.04Desktopamd64,并完整安装Mininet;三、实验要求(一)基本......
  • 实验6_C语言结构体、枚举应用编程
    实验任务4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voi......
  • 【GD32F303红枫派使用手册】第九节 RTC-万年历实验
    9.1实验内容通过本实验主要学习以下内容:RTC简介RTC复位RTC实现万年历RTC使用注意事项9.2实验原理9.2.1RTC简介RTC(RealTimeClock)——实时时钟定时器,可以用作日历。RTC电路分两个电源域部分,其一位于备份域中,该部分包括一个32位的累加计数器、一个闹钟、一个预......
  • 数据库实验二
    (1)查询所有供应商情况,先按城市升序排列,城市相同按供应商名称降序排列。select * from sorder by cityASC , snameDESC; (2)查询所有零件情况, 先按零件名称升序排列, 零件名称相同按重量降序排列。select * from porder by pnameASC , weight DESC;(3)查询项......
  • 递推 7-1 sdut-C语言实验-母牛的故事
    7-1sdut-C语言实验-母牛的故事分数20全屏浏览切换布局作者 马新娟单位 山东理工大学有一对夫妇买了一头母牛,它从第2年起每年年初生一头小母牛。每头小母牛从第四个年头开始,每年年初也生一头小母牛。请编程实现在第n年的时候,共有多少头母牛?输入格式:输入为一个整......