// sdf.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream>
#include<iomanip>
using namespace std;
int main(int argc, char* argv[])
{
int ch;
int flag;// 作为程序是否继续的标志;
do
{
cout<<"1 增加姓名"<<endl;
cout<<"2 删除姓名"<<endl;
cout<<"0 退出"<<endl;
cout<<"请输入你的选项:"<<endl;
cin>>ch;
switch(ch)
{
case 1:cout<<"增加成功"<<endl;break;
case 2:cout<<"删除成功"<<endl;break;
case 0:return 0;//跳出整个while循环,转到Hello World处;
default:continue;//跳出本次的switch循环;
}
printf("是否继续:1.是
0.否");
printf("\n");
scanf("%d",&flag);//用以判断是否继续
}while(flag);
printf("Hello World!\n");
return 0;
}
不知楼主是否满意。呵呵。。。