相关代码 |
|
/* 程序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; }
相关资源 |
|