1.使用多文件编辑,
定义商品信息:商品名称,商品单价,商品购买个数,商品描述,循环输入购买的商品,按单价排序,输出商品信息,计算最贵的商品以及一共花了多少钱?
在create函数,请实现在堆区申请内存5个连续的内存在input函数,请实现循环输入购买的商品
在bubble函数,请实现按单价排序
在Max函数,计算最贵的商品名称在Money函数,计算共花了多少钱在output函数,请实现输出
在free_space函数。实现释放堆区内存
代码:
head.h
#ifndef __HEAD_H_
#define __HEAD_H_
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define X 5
struct store
{
char name[20];
int price;
int num;
char message[100];
};
//申请内存
struct store *create();
//循环输入
void input(struct store *p);
//循环输出
void output(struct store *p);
//单价排序
void bubble(struct store *p);
//找最贵的的商品
void Max(struct store *p);
//计算花了多少钱
void Money(struct store *p);
//释放内存
struct store *free_space(struct store *p);
#endif
test.c
#include "head.h"
//申请内存
struct store *create()
{
struct store *p=(struct store *)malloc(sizeof(struct store)*X);
if(NULL==p)
{
return NULL;
}
return p;
}
//循环输出
void output(struct store *p)
{
for(int i=0;i<X;i++)
{
printf("\t输出商品信息\n");
printf("商品名称\t商品单价\t商品购买个数\t商品描述\n");
printf("%s\t%d\t%d\t%s\n",(p+i)->name,(p+i)->price,(p+i)->num,(p+i)->message);
}
}
//循环输入
void input(struct store *p)
{
for(int i=0;i<X;i++)
{
printf("\t请输入商品信息\n");
printf("请输入商品名称:");
scanf("%s",(p+i)->name);
printf("请输入商品单价:");
scanf("%d",&(p+i)->price);
printf("请输入商品购买个数:");
scanf("%d",&(p+i)->num);
printf("请输入商品描述:");
scanf("%s",(p+i)->message);
}
}
//释放内存
struct store *free_space(struct store *p)
{
if(NULL==p)
{
return NULL;
}
free(p);
p=NULL;
return p;
}
//单价排序
void bubble(struct store *p)
{
for(int i=1;i<X;i++)
{
for(int j=0;j<(X-i);j++)
{
if( ((p+j)->price) < ((p+j+1)->price) )
{
struct store t=*(p+j+1);
*(p+j+1)=*(p+j);
*(p+j)=t;
}
}
}
output(p);
}
//找最贵的的商品
void Max(struct store *p)
{
int max=p->price;
int num=0;
for(int i=0;i<X;i++)
{
if(max< ((p+i)->price) )
{
max=((p+i)->price);
num=i;
}
}
printf("最贵的商品是%s\n",((p+num)->name) );
}
//计算花了多少钱
void Money(struct store *p)
{
int sum=0;
for(int i=0;i<X;i++)
{
sum+=((p+i)->price)*((p+i)->num);
}
printf("总共花费=%d\n",sum);
}
main.c?
#include "head.h"
int main(int argc, const char *argv[])
{
//申请空间
struct store *p=create();
//循环输入
input(p);
//循环输出
printf("\t循环输出\n");
output(p);
printf("\t找最贵的商品\n");
Max(p);
printf("\t排序\n");
//商品降序排列
bubble(p);
printf("\t计算总共花费\n");
Money(p);
//释放内存
p=free_space(p);
return 0;
}
运行效果:
?
?思维导图:
?