数据结构作业3

1.定义结构体数组存储5个学生的信息:姓名,年龄,性别

定义函数实现输入,要求形参使用结构体指针接收

函数实现5个学生年龄排序(注意对年龄排序时,交换的是所有信息)

定义函数实现输出,要求形参使用结构体指针接收

#include <myhead.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct{
   char name[20];
   int age;
   char sex;
}stu,*sstu;

void input_stu(sstu p){
   printf("请输入五个学生信息:\n");
   for(int i=0;i<5;i++){
      printf("第%d个学生:",i+1);
      scanf("%s %d %c",p[i].name,&p[i].age,&p[i].sex);
   }
   printf("\n");

}
void px_stu(sstu p){
   for(int i=1;i<5;i++){
      for(int j=0;j<5-i;j++){
          if(p[j].age>p[j+1].age){
             stu t=p[j];
             p[j]=p[j+1];
             p[j+1]=t;
          }
      }
   }
}
void output_stu(sstu p){
   printf("学生信息:\n");
   for(int i=0;i<5;i++){
   printf("姓名:%s 年龄:%d 性别:%c\n",p[i].name,p[i].age,p[i].sex);
   }
}

int main(int argc, const char *argv[])
{
    sstu p=malloc(sizeof(stu)*5);
    input_stu(p);
    px_stu(p);
    printf("\n排序后:\n");
    output_stu(p);
    return 0;
}
 

2.定义小车结构体,存储名称、价钱、颜色。定义两个变量a,b,初始化,实现ab互换。

#include <myhead.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct{  //定义一个结构体
   char name[20];
   float price;
   char color[20];
}car;

int main(int argc, const char *argv[])
{
    car a={"比亚迪",9.99,"白色"};
    car b={"吉利",12.99,"银色"};
    printf("a=%s %.2f %s\n",a.name,a.price,a.color);
    printf("b=%s %.2f %s\n",b.name,b.price,b.color);
    car t=a;
    a=b;
    b=t;
    printf("交换后:\n");
    printf("a=%s %.2f %s\n",a.name,a.price,a.color);
    printf("b=%s %.2f %s\n",b.name,b.price,b.color);
  
    return 0;
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值