⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shead.h

📁 初始的商品信息文件名为porduct
💻 H
字号:
#include "stdio.h"
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#define SIZE 100 /* mac.ros definition*/
typedef struct
{
    long Number;        /*Field of number     */
    char Name[20];      /*Field of name       */
    float price;        /*Field of price      */
    float discount;     /*Field of discount   */
    float memberprice;  /*Filed of memberprice*/
}product;
extern void CreatFile();         /*创建信息文件*/
extern void AddRecord();         /*增加        */
extern void DelRecord();         /*删除        */
extern void ModifyByNumber();    /*修改        */
extern void QueryBySeatNum();    /*按序号查询  */
extern void QueryByName();       /*按姓名查询  */
extern void SortByMemberPrice(); /*按会员价查询  */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -