《C++编程》书中各章的例子

源代码在线查看: 程序8.11:使用goto跳转构造.cpp

软件大小: 95 K
上传用户: atom0722
关键词: 编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* 程序8.11:使用goto跳转构造.cpp */
				#include			//包含头文件
				using namespace std;		//使用名字空间std
				int main()
				{
					for(int iNum=1; iNum					{
						char ch;
						do
						{
							cout							cin>>ch;
							if (ch == 'y'||ch == 'Y')
				                goto goon;
				            if (ch == 'n'||ch == 'N')
				                goto done;
				        }while(1);
				goon:
					cout				    }
				done:
				    cout				    return 0;
				}
							

相关资源