练习5.6.3节
Posted KennyRom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习5.6.3节相关的知识,希望对你有一定的参考价值。
#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节的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段