当在while里的switch里用break的话,只能跳出switch!
// WhileSwitchBreak.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int i = 0; while (true) { s...