/*浏览商品信息*/Р?void Tuichu(); /*退出管理系统*/Р void main(); /*主函数*/Р/**********************************************系统菜单函数**********************************************/Р?void menu() Р?{Р int choice;Р printf("\n\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 【超市商品信息管理系统】\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3\n");Р printf("--------------------------------系统菜单显示如下--------------------------------");Р printf("\n\t①=====================【新购商品入库】\n");Р printf("\n\t②=====================【商品信息删除】\n");Р printf("\n\t③=====================【商品信息修改】\n");Р printf("\n\t④=====================【商品信息查询】\n");Р printf("\n\t⑤=====================【商品信息浏览】\n");Р printf("\n\t⑥=====================【退出管理系统】\n");/**/Р printf("\n\t请输入您要选择的菜单......");Р scanf("%d",&choice);/*选择菜单功能*/Р switch(choice)Р {Р case 1:Р Tianjia();/*引用添加函数*/