问题及代码:
/*
* Copyright (c) 2015, 烟台大学计算机学院
* All rights reserved.
* 文件名称:Project4.cpp
* 作 者:李楠
* 完成日期:2015年6月17日
* 版 本 号:v1.0
*
* 问题描述:编写一个程序,求输入数的平方根。设置异常处理,当输入负数时采用异常处理机制给出提示。
* 输入描述:略
* 程序输出:略
*/
#include <iostream>
#include <cmath>
using namespace std;
int sq( int n);
int main()
{
int n;
double p;
while(cin>>n)
{
try
{
p=sq(n);
cout<<p<<endl;
}
catch(int)
{
cout<<"被开方数为负数,出错!"<<endl;
}
}
return 0;
}
int sq( int n)
{
if(n<0)
throw n;
else
return sqrt(n);
}
运行结果:
学习心得:
刚开始还不是很理解是怎么运行的,仔细观察后才明白。