C++PrimerPlus 第六章 分支语句和逻辑运算符(复习题含答案)

 1、请看下面两个计算空格和换行符数目的代码片段:

//Version 1

while(cin.get(ch))	//quit on eof
{
    if(ch == ‘ ’)
        spaces++;
    if(ch == ‘\n’)
        newlines++;
}

//Version 2

while(cin.get(ch))	//quit on eof
{
    if(ch == ‘ ’)
        spaces++;
    else if(ch == ‘\n’)
        newlines++;
}

第二种格式比第一种格式好在哪里呢?

这两个版本将给出相同的答案,但if else版本的效率更高。例如,考虑当ch为空格时的情况。版本1对空格加1,然后看它是否为换行符。这将浪费时间,因为程序已经知道ch为空格,因此它不是换行符。在这种情况下,版本2将不会查看字符是否为换行符。

 2、在程序清单6.2中,用ch+1替换++ch将发生什么情况呢?

 程序清单6.2 ifelse.cpp

//ifelse.cpp -- using the if else statement
#include<iostream>
int main()
{
	char ch;

	std::cout << "Type, and I shall repeat.\n";
	std::cin.get(ch);
	while (ch != '.')
	{
		if (ch == '\n')
			std::cout << ch;	//done if newline
		else
			std::cout << ++ch;	//done otherwise
		std::cin.get(ch);
	}
//try ch + 1 instead of  ++ch for interesting effect
	std::cout << "\nPlease excuse the slight confusion.\n";
		//std::cin.get();
		//std::cin.get();
	return 0;
}

++ch和ch+1得到的数值相同。但++ch的类型为char,将作为字符打印,而ch+1是int类型(因为将char和int相加),将作为数字打印。

3、请认真考虑下面的程序:

#include <iostream>
using namespace std;
int main()
{
	char ch;
	int ct1, ct2;

	ct1 = ct2 = 0;
	while ((ch = cin.get()) != '$')
		{
			cout << ch;
			ct1++;
			if (ch = '$')
				ct2++;
			cout << ch;
		}
	cout << "ct1 = " << ct1 << ", ct2 = " << ct2 << "\n";
	return 0;
}

假设输入如下(请在每行末尾按回车键):

        Hi!

        Send $10 or $20 now!

则输出将是什么(还记得吗。输入被缓冲)?

由于程序使用ch = '$',而不是ch == '$',因此输入和输出将如下:

        Hi!

        H$i$!$

        $Send $10 or $20 now!

        S$e$n$d$ $ct1 = 9, ct2 = 9

在第二次打印前,每个字符都被转换为$字符。另外,表达式ch = '$'的值为$字符的编码,因此它是非0值,因而为true;所以每次ct2将被加1。

4、创建表示下述条件的逻辑表达式:

        a. weight大于或等于115,但小于125

        b. ch为q或Q

        c. x为偶数,但不是26

        d. x为偶数,但不是26的倍数

        e. donation为1000-2000或guest为1

        f. ch是小写字母或大写字母(假设小写字母是依次编码的,大写字母也是依次编码的,但在大小写字母间编码不是连续的)。

a. weight >= 115 && weight < 125

b. ch == q || ch == Q

c. x % 2 == 0 && x != 26

d. x % 2 == 0 && !(x % 26 == 0)

e. donation >= 1000 && donation <= 2000 || guest == 1

f. (ch >= a && ch <= z) || (ch >= A && ch <= Z)

5、在英语中,“I will not not speak(我不会不说)”的意思与“I will speak(我要说)”相同。在C++中,!!x是否与x相同呢?

不一定。如果x为10,则!x为0,!!x为1。然而,如果x为bool变量,则!!x为x。

6、创建一个条件表达式,其值为变量的绝对值。也是说,如果变量x为正,则表达式的值为x;但如果x为负,则表达式的值为-x——这是一个正值。

(x < 0) ? -x : x

(x >= 0) ? x : -x

7、用switch改写下面的代码片段:

if (ch == 'A')
	a_grade++;
else if (ch == 'B')
	b_grade++;
else if (ch == 'C')
	c_grade++;
else if (ch == 'D')
	d_grade++;
else
	f_grade++;

答案:

switch (ch)
{
	case 'A':a_grade++;
		break;
	case 'B':b_grade++;
		break;
	case 'C':c_grade++;
		break;
	case 'D':d_grade++;
		break;
	default:f_grade++;
		break;
}

8、对于程序清单6.10,与使用数字相比,使用字符(如a和c)表示菜单选项和case标签有何优点呢?(提示:想想用户输入q和输入5的情况。)

程序清单6.10 switch.cpp

//switch.cpp -- using the switch statement
#include<iostream>
using namespace std;
void showmenu();	//function prototypes
void report();
void comfort();
int main()
{
	showmenu();
	int choice;
	cin >> choice;
	while (choice != 5)
	{
		switch (choice)
		{
		case 1:cout << "\a\n";
			break;
		case 2:report();
			break;
		case 3:cout << "The boss was in all day.\n";
			break;
		case 4: comfort();
			break;
		default:cout << "That's not a choice.\n";
		}
		showmenu();
		cin >> choice;
	}
	cout << "Bye!\n";
	return 0;
}

void showmenu()
{
	cout << "Please enter 1, 2, 3, 4, or 5:\n"
		"1) alarm		2) report\n"
		"3) alibi		4) comfort\n"
		"5) quit\n";
}
void report()
{
	cout << "It's been an excellent week for business.\n"
		"Sales are up 120%. Expenses are down 35%.\n";
}
void comfort()
{
	cout << "Your employees think you are the finest CEO\n"
		"in the industry. The board of directors think\n"
		"you are the finest CEO in the industry.\n";
}

如果使用整数标签,且用户输入了非整数(如q),则程序将因为整数输入不能处理字符而挂起。但是,如果使用字符标签,而用户输入了整数(如5),则字符输入将5作为字符处理。然后,switch语句的default部分将提示输入另一个字符。

9、请看下面的代码片段:

int line = 0;
char ch;
while (cin.get(ch))
{
	if (ch == 'Q')
		break;
	if (ch != '\n')
		continue;
	line++;
}

请重写该代码片段,不要使用break和continue语句。

答案:

int line = 0;
char ch;
while (cin.get(ch) && ch != 'Q')
{
	if (ch == '\n')
		line++;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Hank_W

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值