编写代码,产生除零算数异常捕获并处理
1个回答
展开全部
#include<iostream>
using namespace std;
double fun(double x, double y){
if(y==0)
throw 1;
return x/y;
}
void main(){
double a,b,c;
try{
cout <<"输入 a 和 b: ";
cin >>a >>b;
c=fun(a,b);
cout <<"c=" <<c <<endl;
}
catch(int e){
if(e==1)
cout <<"错误:除数为零。\n";
}
catch(...){
cout <<"其它错误。\n";
}
}
using namespace std;
double fun(double x, double y){
if(y==0)
throw 1;
return x/y;
}
void main(){
double a,b,c;
try{
cout <<"输入 a 和 b: ";
cin >>a >>b;
c=fun(a,b);
cout <<"c=" <<c <<endl;
}
catch(int e){
if(e==1)
cout <<"错误:除数为零。\n";
}
catch(...){
cout <<"其它错误。\n";
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询