12_4.cpp
来自「C++语言程序设计案例教程,郑莉编的书」· C++ 代码 · 共 15 行
CPP
15 行
#include <iostream>
#include <cmath>
using namespace std;
double dsqrt(double d){ if(d<0) throw 1; return sqrt(d);}//抛出异常
int main()
{ int x;
while(1)
{ cout<<"Please input a positive integer:"; cin>>x;
try {cout<<dsqrt(x)<<endl; }
catch(int) {cout<<"It is a negtive integer"<<endl; }//捕捉异常
if(x<0) break;
}
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?