// 下面是前期的点餐系统的基础数据维护,其它功能运团你可以自己尝试写,如果遇到什么问题可以提出来追问喔,相信你可以解决的(我怕代码太多提交会受字数限制)。
// mm.h 头文件#include<stdio.h>
#include<stdlib.h>
#define MENU_NUM_MAX 100 // 假设有100种菜式
#define LEN sizeof(struct MenuInfo)
struct MenuInfo
{
int ID
char MenuName[20]
float price
}Menu[MENU_NUM_MAX]
/* 基础数据维护 */
void AddMenu()
{
FILE *fp
int menu_num
printf("\t\t 你要添加多少种菜?:")
scanf("%d",&menu_num)
for(int i=0i<menu_numi++)
{
printf("\n") // added this line
printf("\t\t请输入ID:")
scanf("%d",&Menu[i].ID)
printf("\t\t请输入菜名毁启:")
scanf("%s",Menu[i].MenuName)
printf("\t\t请输入[%s]菜的价格:",Menu[i].MenuName)
Menu[i].price=0.0f //initial float price
scanf("%f",&Menu[i].price)
fflush(stdin)
}
if((fp=fopen("MenuInfo.dat","ab"))==NULL) // open binary file
{
printf("Can't open file\n")
exit(1)
}
for(int j=0j<menu_numj++)
{
if(fwrite(&Menu[j],LEN,1,fp)!=1) //writing data to binary file
printf("Error writing file.\n")
}
fclose(fp) // close file point
}
void DisplayMenuInfo()
{
纤悄如FILE *fp
printf("\n\t\tID 菜名\t\t价格\n") // column headings
if((fp=fopen("MenuInfo.dat","rb"))==NULL) // open binary file
{
printf("Can't open file\n")
exit(1)
}
int i=0
do
{
fseek(fp,i*LEN,SEEK_SET) // move file head location
if(fread(&Menu[i],LEN,1,fp)) // read data save to structure variable
{
printf("\t\t%d %5s\t\t%5.1f元\n",Menu[i].ID,Menu[i].MenuName,Menu[i].price)
i++
}
}while(!feof(fp))
fclose(fp)
}
void DeleteToMenu()
{
FILE *fp
int MenuID
int todelete=-1
int i=0
printf("请输入要删除的菜名的ID:")
scanf("%d",&MenuID)
/* load or reload the file and check that record with that ID exists */
if((fp=fopen("MenuInfo.dat","rb"))==NULL) // open binary file
{
printf("Can't open file\n")
exit(1)
}
do
{
fseek(fp,i*LEN,SEEK_SET) // move file head location
if(fread(&Menu[i],LEN,1,fp))
{
if (Menu[i].ID==MenuID) todelete=i
i++
}
}while(!feof(fp))
fclose(fp)
if (todelete==-1)
{
printf("A menu with that ID doesn't exist\n")
}
else
{
/* write records back to file excluding one to be deleted */
if((fp=fopen("MenuInfo.dat","wb"))==NULL) // open binary file
{
printf("Can't open file\n")
exit(1)
}
for(int j=0j<ij++)
{
if (j==todelete) continue /* skip record to be deleted */
if(fwrite(&Menu[j],LEN,1,fp)!=1) //writing data to binary file
printf("Error writing file.\n")
}
fclose(fp) // close file point
}
}
void FindMenu()
{
FILE *fp
int MenuID
bool find_mark=false
printf("\n\t\t请输入你要查找的菜名ID:")
scanf("%d",&MenuID)
printf("\n\t\tID 菜名\t\t价格\n") // column headings
if((fp=fopen("MenuInfo.dat","rb"))==NULL) // open binary file
{
printf("Can't open file\n")
exit(1)
}
int i=0
do
{
fseek(fp,i*LEN,SEEK_SET) // move file head location
fread(&Menu[i],LEN,1,fp) // read data save to structure variable
if(Menu[i].ID==MenuID)
{
printf("\t\t%d %5s\t\t%5.1f元\n",Menu[i].ID,Menu[i].MenuName,Menu[i].price)
find_mark=true
break
}
i++
}while(!feof(fp))
if(!find_mark) printf("\n\t 尊敬的客户:我们餐厅没有你要点的菜喔,你可以试试我们的招牌菜啊^-^.\n")
fclose(fp)
}
/* 基础数据维护完毕 */
// sc.cpp主文件
#include <stdio.h>
#include <stdlib.h>
#include "mm.h"
void main(void)
{
//AddMenu()
//DisplayMenuInfo()
//FindMenu()
}
目前市场上有很多餐饮点餐系统,选择哪个好用需要根据具体情况而定。以下是一些常见的餐饮点餐系统,供参考:饿了么、美团外卖:这两个平台是目芦袭前国内最大的餐饮外卖平台之一,提供线上订餐服务,商家可以通过平台销售菜品。用户可以通过手机APP或者网站点餐、下单,并且享受到平台提供的各种优惠活动。
快餐店自主点餐系统:一些快餐店和连锁店自己也推出了点餐系统,通岩返过扫码或者手机APP来实现自主点餐、在线支付等功能,减少了等待时间和人力成本。
传递宝点餐系统:是一款免费的点餐系统,下载app经过适当配置就可以使用,多种功能可供会员管理,营销,卡券等。
自主开发点餐系统:一些餐饮企业也选择自主开发点餐系统,根据自己的需求进行功能开发和定制。这种方式需要具备粗哗饥一定的技术能力和开发经验,成本相对较高。
以上只是一些常见的餐饮点餐系统,具体选择还需考虑到商家自身的需求、预算和技术实力等因素。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)