#include
void main()
{
int choice,i=0;
while(i++<5)
{
do{
cout<<"\n 功能选择表";
cout<<"\n (1) 打开新文件.";
cout<<"\n (2) 增加数据.";
cout<<"\n (3) 删除数据.";
cout<<"\n (4) 查找数据.";
cout<<"\n (5) 结束程序.";
cout<<"请输入数字(1-5):";
cin>>choice;
}while(choice<1||choice>5);
cout<<"\n第"< cout<<"\n您刚才输入的功能号码是:"< }
}
阅读(632) | 评论(0) | 转发(0) |