问题及代码:
/*
*Copyright (c) 2015,烟台大学计算机学院
*All rights reserved.
*文件名称:test.cpp
*作者:吴胜男
*完成日期:2015年06月21日
*版本号: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);
}
运行结果:
知识点总结:新知识的应用,异常处理也没很复杂,也是按顺序走。
学习心得:是时候复习一下以前的知识了。