C++ Primer Plus习题及答案-第五章

习题选自:C++ Primer Plus(第六版)
内容仅供参考,如有错误,欢迎指正 !

1.逗号运算符是指在C语言中,多个表达式可以用逗号分开,其中用逗号分开的表达式的值分别计算,但整个表达式的值是最后一个表达式的值。(逗号运算符的优先级别在所有运算符中最低)

复习题

1.入口条件循环和出口条件循环之间的区别是什么?各种c++循环分别属于其中的哪一种?

入口循环就是程序在执行循环体中的语句之前先检查循环条件;出口循环是在执行循环体中的语句之后检查循环条件。for循环和while循环都是入口条件循环;do while循环为出口条件循环。

2.如果下面的代码片段是有效程序的组成部分,它将打印什么内容?
int i;
for(i=0;i<5;i++)
      cout<<i;
cout<<endl;

打印内容:01234

3.如果下面的代码片段是有效程序的组成部分,它将打印什么内容?
int j;
for(j=0;j<11;j+=3)
    cout<<j;
cout<<endl<<j<<endl;

打印内容:
0369
12

4.如果下面代码是有效程序的组成部分,它将打印什么内容?
int j=5;
while(++j<9)
    cout<<j++<<endl;

打印内容:
6
8

5.如果下面代码是有效程序的组成部分,它将打印什么内容?
int k=8;
do
    cout<<"k="<<k<<endl;
while(k++<5);

打印内容:
k=8

6.编写一个打印1、2、4、8、16、32、64的for循环,每轮循环都将计数变量的值乘以2。
int i;
for(i=1;i<=64;i*=2)
    cout<<i<<" ";
7.如何在循环体中包括多条语句?

将语句放在一对大括号中形成一个复合语句或代码块。

8.下面的语句是否有效?如果无效,原因是什么?如果有效,它将完成什么工作?

a.int x={1,024}
b.int y=1,024;
语句a是有效的,表达式1,024为逗号表达式,该表达时的右侧表达式的值,由于024为8进制数,对应的十进制数为20,因此x的值应为20,即x=20。
语句b也是有效的,但是逗号运算符的优先级低于赋值运算符,因此b中表达式等效为(int y=1),024;

9.在查看输入方面,cin>>chcin.get(ch)ch=cin.get()有什么不同?

cin>>ch将跳过空格、换行符和制表符,其他两种格式将读取这些字符。

编程练习

1.编写一个要求用户输入两个整数的程序。该程序将计算并输出这两个整数之间(包括这两个整数)所有整数的和。这里假设先输入较小的整数。例如,如果用户输入的是2和9,则程序将指出2~9之间所有整数的和为44。
#include<iostream>
using namespace std;
int main()
{
    int a, b, sum = 0;
    cout << "Please enter two integers(enter the smaller integer first)." << endl;
    cout << "The first integer : _\b";
    cin >> a;
    cout << "The second integer: _\b";
    cin >> b;
    for (int i = a; i <= b; i++)
        sum += i;
    cout << "The sum of integers between "<<a<<" and "<<b<<" is : " << sum << endl;
    system("pause");
    return 0;
}
2.使用array对象(而不是数组)和long double(而不是long long)重新编写程序清单5.4,并计算100!的值。

Listing 5.4 formore.cpp


// formore.cpp -- more looping with for
#include <iostream>
const int ArSize = 16; // example of external declaration
int main()
{
    long long factorials[ArSize];
    factorials[1] = factorials[0] = 1LL;
    for (int i = 2; i < ArSize; i++)
    factorials[i] = i * factorials[i-1];
    for (int i = 0; i < ArSize; i++)
    std::cout << i << "! = " << factorials[i] << std::endl;
    return 0;
}


编写后程序清单:

#include<iostream>
#include<array>
const int ArSize = 16; 
int main()
{
    using namespace std;
    array<long double,ArSize>factorials;
    factorials[1] = factorials[0] = 1.0;
    for (int i = 2; i < ArSize; i++)
        factorials[i] = i * factorials[i - 1];
    for (int i = 0; i <ArSize; i++)
        cout << i << "! = " << factorials[i] << endl;
    system("pause");
    return 0;
}
3.编写一个要求用户输入数字的程序。每次输入后,程序都将报告到目前为止,所有输入的累计和,当用户输入0时,程序结束。
#include<iostream>
#include<array>
int main()
{
    using namespace std;
    double num,sum=0;
    for (int i = 1; i != 0; i=num)
    {
        cout << "Please enter a number(if 0,the end the program.)_\b";
        cin >> num;
        sum += num;
        cout << "At this point, the cumulative sum of the Numbers is : " << sum << endl;
    }
    cout << "Bye" << endl;
    system("pause");
    return 0;
}
4.Daphne以10%的单利投资了100美元。也就是说,每一年的利润都是投资额的10%,即每年10美元:利息=0.10*原始存款。而Cleo在第一年投资100美元的盈利是5%--一共得到105美元。下一年的盈利是105美元的5%--即5.25美元,以此类推。请编写一个程序,计算多少年后,Cleo的投资价值超过Daphne的投资价值。并显示此时两个人的投资价值。
#include<iostream>
int main()
{
    using namespace std;
    double daphne = 100.0;
    double cleo = 100.0;
    int year;
    for (year = 1; cleo <= daphne; year++)
    {
        daphne += 10.0;
        cleo *= 1.05;
    }
    cout << year-1 << " years later,Cleo's investment is worth more than Daphne's." << endl;
    cout << "Daphne has $" << daphne << endl;
    cout << "Cleo has $" << cleo << endl;
    system("pause");
    return 0;
}
5.假设要销售《C++ For Fools》一书。请编写一个程序,输入全年中每个月的销售量(图书数量,而不是销售额)。程序通过循环,使用初始化为月份字符串的char*数组(或string对象数组)逐月进行提示,并将输入数据存储的int数组中。然后,程序计算数组中各元素的总数,并报告这一年的销售情况。
#include<iostream>
#include<string>
int main()
{
    using namespace std;
    string months[12]  = {
        "January", "February", "March", "April", "May", "June",
        "July", "August", "September", "October", "November",
        "December"
    };
    int sales[12];
    int sum = 0;
    
    for (int i = 0; i < 12; i++)
    {
        cout << "Please enter the sales volume for " << months[i] << " : _\b";
        cin >> sales[i];
    }

    for (int i = 0; i < 12; i++)
    {
        cout << months[i] << " sales : " << sales[i]<<endl;
        sum += sales[i];
    }

    cout << "Annual sales :" << sum << endl;
    system("pause");
    return 0;
}
6.完成编程练习5,但这一次使用大的一个二位数组来存储输入---3年中每个月的销售量。程序将报告每年销量以及三年的总销量。
#include<iostream>
#include<string>
int main()
{
    using namespace std;
    string months[12]  = {
        "January", "February", "March", "April", "May", "June",
        "July", "August", "September", "October", "November",
        "December"
    };
    int sales[3][12];
    int sum = 0;
    for (int i = 0; i < 3; i++)
    {
        cout << "Year " << i+1 << ": " << endl;
        for (int f = 0; f < 12; f++)
        {
            cout << "Please enter the sales volume for " << months[f] << " : _\b";
            cin >> sales[i][f];
        }
    }
    for (int j=0; j < 3; j++)
    {
        cout << "*********Year " << j+1 << "*********" << endl;
        for (int i = 0; i < 12; i++)
        {
            cout << months[i] << " sales : " << sales[j][i] << endl;
            sum += sales[j][i];
        }
    }
    cout << "Annual sales :" << sum << endl;
    system("pause");
    return 0;
}
7.设计一个名为car的结构,用它存储下述有关汽车的信息:生产商(存在字符数组或string对象中的字符串)、生产年份(整数)。编写一个程序向用户询问有多少辆汽车。随后,程序使用new来创建一个有相应数量的car结构组成的动态数组。接下来,程序提示用户输入每辆车的生产商(可能有多个单词组成)和年份信息。请注意,这需要特别小心,因为它将交替读取数值和字符串。最后,程序将显示每个结构的内容。该程序的运行情况如下:
How many cars do you wish to catalog? 2
Car #1:
Please enter the make:Hudson Hornet
Please enter the year made:1952
Car #2:
Please enter the make:Kaiser
Please enter the year made:1951
Here is your collection:
1952 HUdson Hornet
1951 Kaiser

实现代码:

#include<iostream>
#include<string>
using namespace std;
struct Car {
    string maker;
    int year;
};

int main()
{
    int num;
    cout << "How many cars do you wish to catalog? ";
    (cin >> num).get();
    Car *cars=new Car[num];
    for (int i=0; i < num; i++)
    {
        cout << "Car #" << i + 1 << " : " << endl;
        cout << "Please enter the make : ";
        getline(cin ,cars[i].maker);
        cout << "Please enter the year made : ";
        (cin >> cars[i].year).get();
    }
    cout << "Here is your collection:" << endl;
    for (int i = 0; i < num; i++)
        cout << cars[i].year << " " << cars[i].maker << endl;
    delete []cars;
    system("pause");
    return 0;
}
8.编写一个程序,它使用一个char数组和循环来每次读取一个单词,直到用户输入done为止。随后,该程序指出用户输入多少个单词(不包含done)。下面是程序的运行情况:
Enter words(to stop,type the word done):
anteater birthday category dumpster
envy finagle geometry done for sure
You entered a total of 7words.
您应在程序中包含头文件cstring,并使用strcmp()来进行比较测试。

实现代码:

#include<iostream>
#include<cstring>
using namespace std;

int main()
{
    char word[20];
    cout << "Enter words(to stop,type the word done):" << endl;
    cin >> word;
    int num = 0;
    while (strcmp("done", word))
    {
        num++;
        cin >> word;
    }
    cout << "You entered a total of " << num << " words." << endl;
    system("pause");
    return 0;
}
9.编写一个满足前一个练习的中描述的程序,但使用string对象而不是字符数组。请在程序中包含头文件string,并使用关系运算符来进行比较测试。
#include<iostream>
#include<string>
using namespace std;

int main()
{
    string word;
    cout << "Enter words(to stop,type the word done):" << endl;
    cin >> word;
    int num = 0;
    while ( word.compare("done"))
    {
        num++;
        cin >> word;
    }
    cout << "You entered a total of " << num << " words." << endl;
    system("pause");
    return 0;
}
10.编写一个使用嵌套循环的程序,要求用户输入一个值,指出要显示多少行。然后,程序将显示相应行数的型号,其中第一行包括一个星号,第二行包括两个星号,以此类推。每一行包含的字符数等于用户指定的行数,在星号不够的情况下,在星号前面加句点。程序的运行情况如下:
Enter number of row : 5
....*
...**
..***
.****
*****

代码实现:

#include<iostream>
using namespace std;

int main()
{
    int row;
    cout << "Enter number of rows : ";
    cin >> row;
    for (int i = 0; i < row; i++)
    {
        for (int j = 0; j < row; j++)
        {
            if (i < row -j-1)
                cout << '.';
            else
                cout << '*';
        }
        cout << endl;
    }
    system("pause");
    return 0;
}
微信公众号,关注一下
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容