#include <stdio.h>
#include <stdlib.h>
void input();//客户信息输入函数
void business();//银行交易函数
void output();//显示客户信息函数
void main()
{
int choice=1;
while (choice!=4)
{
system("cls");
printf("\n银行管理系统\n");
printf("\n==============================\n");
printf("\n 1 输入客户信息\n");
printf("\n 2 银行交易\n");
printf("\n 3 显示客户信息\n");
printf("\n 4 退出\n");
printf("\n==============================\n");
printf("请选择:");
scanf("%d%*c",&choice);
if (choice>4)
{
printf("\n请输入1-4之间的数字\n");
printf("\n按任意键返回主菜单……");
getchar();
continue;
}
if (choice==1)
{
input();
}
else if (choice==2)
{
business();
}
else if (choice==3)
{
output();
}
}
}
//客户信息输入函数
void input()
{

}
//银行交易函数
void business()
{

}
//显示客户信息函数
void output()
{

}