码迷,mamicode.com
首页 > 其他好文 > 详细

练习5.6.3节

时间:2016-09-09 06:32:20      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<stdexcept>
using namespace std;

int main()
{
    int a,b;
    label: cin>>a>>b;
    try
    {
    if(b==0)throw runtime_error("重输");
    cout<<a/b<<endl;
    }
    catch(runtime_error err)
    {
    cout<<err.what()
        <<"重输"<<endl;

    goto label;
    }
    return 0;
}

  

练习5.6.3节

标签:

原文地址:http://www.cnblogs.com/KennyRom/p/5855040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!