C++Primer中文版_第4版_第七章_函数_习题解答_文字word版 .pdf

C++Primer中文版_第4版_第七章_函数_习题解答_文字word版 .pdf

  1. 1、本文档共20页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第七章 函数 题目00 What is the difference between a parameter and an argument? 形参和实参有什么区别? 【解答】 形参是在函数定义的形参表中进行定义,是一个变量,其作用域为整个函数。而实参出现在 函数调用中,是一个表达式。进行函数调用时,用传递给函数的实参对形参进行初始化。 题目01 Indicate which of the following functions are in error and why. Suggest how you might correct the problems. 下列哪些函数是错误的?为什么?请给出修改意见。 (a) int f() { string s; // ... return s; } (b) f2(int i) { /* ... */ } (c) int calc(int v1, int v1) /* ... */ } (d) double square(double x) return x * x; 【解答】 (a) 是错误的。因为函数头中所定义的返回值类型为int,return 语句世纪返回的表达式的类 型为string,两个类型不同,而string 类型又不能隐式转换为int 类型。可修改为: string f(){ string s; //… Return s; } (b) 是错误的。因为该函数定义中没有指定返回类型,在标准C++ 中,定义函数时不指定返 回类型是非法的。可修改为: Int f2(int i){/*…*/} (c) 是错误的。缺少括住函数体在左花括号,而且两个形参不应该同名。可修改为: Int caic(int v1,intv2){/*…*/} (d) 是错误的。缺少括住函数体的一对花括号。可修改为: Double square (double x ){return x*x;} 题目02 Write a program to take two int parameters and generate the result of raising the first parameter to the power of the second. Write a program to call your function passing it two ints. Verify the result. 编写一个带有两个 int 型形参的函数,产生第一个参数的第二个参数次幂的值。 编写程序传递两个 int 数值调用该函数,请检验其结果。 【解答】 //7-3.cpp // 函数Power 带有两个int 型形参,产生第一个参数的第二个参数次幂的值。 //主函数传递两个int 型数值调用power 函数 #includeiostream Using namespace std; Int power(int x,inty)//该函数返回x 的y 次幂 { Int result=1; For (int loop=1;loop=y;++loop) Result *=x; Return result; } Int main() { Int xval,yval; Cout”enter two integers(the second one should be equal to or bigger than 0):”endl; Cinxvalyval; If(yval0){ Cout”the second integer should be equal to or bigger than 0”endl; Return 1; } Cout”result of raising ”xval””to the power of yval”is ”power(xval,yval)endl; Return 0; } 注意,当输入的证书较大时,该power 函数的计算结果容易溢出。 题目03 Write a program to return the absolute value of its parameter. 编写一个函数,返回其形参的绝对值。 【解答】 可编写如下abs 函数

文档评论(0)

. + 关注
官方认证
内容提供者

专注于职业教育考试,学历提升。

版权声明书
用户编号:8032132030000054
认证主体社旗县清显文具店
IP属地河南
统一社会信用代码/组织机构代码
92411327MA45REK87Q

1亿VIP精品文档

相关文档