void f(int, int)是什么意思?为什么可以不写参数的名字?
在这种情况下,函数里需要调用参数怎么办?是出现在这道题中的:某小朋友已经四岁了,她开始学习数字减法,但她还不理解负数的概念,如果被减数和减数中出现负数,或者被减数小于减数...
在这种情况下,函数里需要调用参数怎么办?
是出现在这道题中的:
某小朋友已经四岁了,她开始学习数字减法,但她还不理解负数的概念,如果被减数和减数中出现负数,或者被减数小于减数,她都不会算。
函数calc做减法计算前进行了检查。
int calc(int a, int b) throw(logic_error)
{
if (a<0) throw out_of_range("Out of range exeception");
else if (b<0) throw out_of_range("Out of range exeception");
else if (a<b) throw logic_error("Minuend smaller than subtrahend");
return a-b;
}
请写一个test函数
void test(int, int)
使得以下函数f
void f()
{
test(-3,1);
test(1,-3);
test(1,3);
}
输出如下:
Out of range exeception
Out of range exeception
Minuend smaller than subtrahend
请只提交test函数,不要提交calc函数。
我的test函数是这样写的
void test(int a, int b)
{
try
{
calc(a, b);
}
catch (exception &ex)
{
cout << ex.what() << endl;
}
}
但是这样的话就不符合“请写一个test函数 void test(int, int)” 的要求了。。应该要怎么写呢? 展开
是出现在这道题中的:
某小朋友已经四岁了,她开始学习数字减法,但她还不理解负数的概念,如果被减数和减数中出现负数,或者被减数小于减数,她都不会算。
函数calc做减法计算前进行了检查。
int calc(int a, int b) throw(logic_error)
{
if (a<0) throw out_of_range("Out of range exeception");
else if (b<0) throw out_of_range("Out of range exeception");
else if (a<b) throw logic_error("Minuend smaller than subtrahend");
return a-b;
}
请写一个test函数
void test(int, int)
使得以下函数f
void f()
{
test(-3,1);
test(1,-3);
test(1,3);
}
输出如下:
Out of range exeception
Out of range exeception
Minuend smaller than subtrahend
请只提交test函数,不要提交calc函数。
我的test函数是这样写的
void test(int a, int b)
{
try
{
calc(a, b);
}
catch (exception &ex)
{
cout << ex.what() << endl;
}
}
但是这样的话就不符合“请写一个test函数 void test(int, int)” 的要求了。。应该要怎么写呢? 展开
4个回答
展开全部
题目的要求只是想说明:函数中两个参数的类型。
至于函数中参数的名称(就是你的a,b)在函数声明的时候可以省略,而在函数实现的时候必须要写上参数的名称。
至于函数中参数的名称(就是你的a,b)在函数声明的时候可以省略,而在函数实现的时候必须要写上参数的名称。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
符合要求,void test(int, int)是声明,void test(int a, int b)是定义
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询