1. 程式人生 > >C++ primer Plus(第六版)中文版 第五章 迴圈和關係表示式 程式設計練習答案

C++ primer Plus(第六版)中文版 第五章 迴圈和關係表示式 程式設計練習答案

第五章 程式設計練習
1. 編寫一個要求使用者輸入兩個整數的程式。該程式將計算並輸出兩個整數之間(包括這兩個整數)所有整數的和。
   這裡假設先輸入較小的整數。例如:如果使用者輸入的是2和9,則程式將指出2~9 之間所有的整數的和為44.
1.1 for 迴圈版

#include <iostream>

int main()
{
    using namespace std;

    int a;
    int b;
    int sum = 0;

    cout << "請輸入兩個整數,以求得他們之間(包括這兩個整數)所有整數的和\n";
    cout << "請輸入第一個整數(較大的) ";
    cin >> a;
    cout << "請輸入第二個整數(較小的) ";
    cin >> b;

    for (int i = a; i <= b; i++)
        sum = sum + i;

    cout << "第一個整數" << a << "到第二個整數" << b
        << "之間(包括這兩個整數)所有整數的和為: " << sum;

    return 0;
}

1.2 while 迴圈版

#include <iostream>

int main()
{
    using namespace std;

    int a;
    int b;
    int sum = 0;
    int i;

    cout << "請輸入兩個整數,以求得他們之間(包括這兩個整數)所有整數的和\n";
    cout << "請輸入第一個整數(較大的) ";
    cin >> a;
    cout << "請輸入第二個整數(較小的) ";
    cin >> b;

    i = a;
    
    while(i <= b)
    {
        sum = sum + i;
        i += 1;
    }
    cout << "第一個整數" << a << "到第二個整數" << b
        << "之間(包括這兩個整數)所有整數的和為: " << sum;

    return 0;
}

1.3 使用if,允許先輸入較大的數

#include <iostream>

int main()
{
    using namespace std;

    int a;
    int b;
    int sum = 0;

    cout << "請輸入兩個整數,以求得他們之間(包括這兩個整數)所有整數的和\n";
    cout << "請輸入第一個整數 ";
    cin >> a;
    cout << "請輸入第二個整數 ";
    cin >> b;

    if (a <= b)
    {
        for (int i = a; i <= b; i++)
            sum = sum + i;
    }
    else
    {
        for (int i = a; i >= b; i--)
            sum = sum + i;
    }
    
    cout << "第一個整數" << a << "到第二個整數" << b
        << "之間(包括這兩個整數)所有整數的和為: " << sum;

    return 0;
}

2. 使用array物件(而不是陣列)和 long double (而不是long long)重新編寫程式清單5.4,並計算100!的值。
程式清單5.4 如下
// 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;
}
2.1 修改後

#include <iostream>
#include <array>

const int ArSize = 101;      // example of external declaration
int main()
{
    using namespace std;
    array<long double, ArSize> factorials;
    factorials[1] = factorials[0] = 1L;
    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;

    return 0;
}

3. 編寫一個要求使用者輸入數字的程式,每次輸入後,程式都將報告到目前為止,所有輸入的累積和。
   當用戶輸入為0時,程式結束
3.1 基礎版

#include <iostream>

int main()
{
    using namespace std;
    
    double a;
    double sum = 0;
    
    cout << "請輸入數字:";
    cin >> a;
    while(1)            //或for(;;)
    {
        sum = sum + a;
        cout << "到目前為止,所有輸入的累積和為:" << sum << endl;
        cout << "請輸入數字:";
        cin >> a;
    }
    return 0;
}    

3.2 判斷輸入是否有效(輸入除數字以外的字元即停止)

#include <iostream>

int main()
{
    using namespace std;
    
    double a;
    double sum = 0;
    
    cout << "請輸入數字:";
    while (cin >> a)
    {
        sum = sum + a;
        cout << "到目前為止,所有輸入的累積和為:" << sum << endl;
        cout << "請輸入數字:";
    }
    return 0;
}    

4. Daphne以10%的單利投資了100美元。也就是說。每一年的利潤都是投資的10%,即每年10美元。(每年的利息=0.10*原始存款),而Cleo以5%的複利投資了100美元。也就是說,利息是當前存款(包括獲得的利息)的5%。(每一年的利息=0.05*當前存款),Cleo在第一年投資100美元的盈利是5%——得到了105美元,下一年的盈利是105美元的5%——即5.25 美元,以此類推。請編寫一個程式,計算多少年後,Cleo的投資價值才能超過Daphne的投資價值,並顯示此時兩個人的價值投資。
4.1 用while迴圈

#include <iostream>

int main()
{
    using namespace std;
    const double daphne_rate = 0.1;
    const double cleo_rate = 0.05;
    
    const double daphne_init = 100;
    const double cleo_init = 100; 
    
    int year = 0;
    double daphne = daphne_init;
    double cleo = cleo_init;    
    while (daphne >= cleo)
    {
        year += 1;
        daphne = daphne_init * daphne_rate * year + daphne_init;
        cleo = cleo * cleo_rate + cleo;  
    }
    
    cout << "第" << year << "年時Cleo的投資價值才能超過Daphne的投資價值\n";
    cout << "此時Daphne的投資價值為: " <<  daphne << endl;
    cout << "此時Cleo的投資價值為: " <<  cleo << endl;
    
    return 0;
}

4.2 用for迴圈

#include <iostream>

int main()
{
    using namespace std;
    const double daphne_rate = 0.1;
    const double cleo_rate = 0.05;
    
    const double daphne_init = 100;
    const double cleo_init = 100; 
    
    int year;
    double daphne = daphne_init;
    double cleo = cleo_init;    
    for(int i = 1; daphne >=cleo; i++)
    {
        year = i;
        daphne = daphne_init * daphne_rate * year + daphne_init;
        cleo = cleo * cleo_rate + cleo;  
    }
    
    cout << "第" << year << "年時Cleo的投資價值才能超過Daphne的投資價值\n";
    cout << "此時Daphne的投資價值為: " <<  daphne << endl;
    cout << "此時Cleo的投資價值為: " <<  cleo << endl;
    
    return 0;
}

5. 假設要銷售《C++ For Fools》一書。請編寫一個程式,輸入全年中每個月的銷售量(圖書數量,而不是銷售額)。
   程式通過迴圈,使用初始化為月份的字串char*陣列(或string物件陣列)逐月進行提示,
   並將輸入的資料儲存在一個int陣列中,然後程式計算陣列中各元素的總數,並報告這一年的銷售情況。
5.1 使用字串char*陣列

#include <iostream>

int main()
{
    using namespace std;
    
    const char* month[12] = {"一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"};
    int num[12];
    int sum = 0;
    
    for (int i = 0; i<12; i++)
    {
        cout << "請輸入" << month[i] << "的銷售量: ";
        cin >> num[i];
    }
    
    for (int i = 0; i<12; i++)
    {    
        cout << month[i] << "的銷售量為: \t" << num[i] << endl;
        sum = sum +  num[i];
    }
    
    cout << "一年的銷售情況為: \t" << sum;
    
    return 0;
}

5.2 使用string物件陣列

#include <iostream>
#include <string>

int main()
{
    using namespace std;
    
    const string month[12] = {"一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"};
    int num[12];
    int sum = 0;
    
    for (int i = 0; i<12; i++)
    {
        cout << "請輸入" << month[i] << "的銷售量: ";
        cin >> num[i];
    }
    
    for (int i = 0; i<12; i++)
    {    
        cout << month[i] << "的銷售量為: \t" << num[i] << endl;
        sum = sum +  num[i];
    }
    
    cout << "一年的銷售情況為: \t" << sum;
    
    return 0;
}

6. 完成程式設計練習5,但這一次使用一個二維陣列來儲存輸入——3年中每個月的銷售量。程式將報告每年銷售量以及三年的總銷售量。

#include <iostream>
#include <string>

int main()
{
    using namespace std;
    
    const string month[12] = {"一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"};
    int num[3][12];
    int sum = 0;
    
    for (int j = 0; j < 3; j++)
    {
        cout << "第" << j+1 <<"年:\n";
        for (int i = 0; i < 12; i++)
        {
            cout << "請輸入" << month[i] << "的銷售量: ";
            cin >> num[j][i];
        }
    }
    
    for (int j = 0; j < 3; j++)
    {
        cout << "第" << j+1 <<"年:\n";
        for (int i = 0; i < 12; i++)
        {
            cout << month[i] << "的銷售量為: \t" << num[j][i] << endl;
            sum = sum + num[j][i];
        }
    }
    
    cout << "三年的銷售情況為: \t" << sum;
    
    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>
int main()
{
    using namespace std;
    
    int num;
    struct car 
    {
        char maker[20];
        int year;
    };
    
    cout << "How many cars do you wish to catalog? ";
    cin >> num;
    cin.get();
    
    car * catalog = new car [num];
    
    for (int i = 0; i < num; i++)
    {
        cout << "Car #" << i+1 << ":\n";
        cout << "Please enter the make: ";
        cin.get(catalog[i].maker, 20).get(); 
        cout << "Please enter the year made: ";
        cin >> catalog[i].year;
        cin.get();
    }
    
    cout << "Here is your collection:\n";
    for (int i = 0; i < num; i++)
        cout << catalog[i].year << " " <<catalog[i].maker << endl;
    
    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 7 words.
   您應在程式中包含標頭檔案csting,並使用函式strcmp()函式來進行比較測試

#include <iostream>
#include <cstring>
int main()
{
    using namespace std;
    char word[20];
    int sum = 0;
    
    cout << "Enter words (to stop, type the word done): " << endl;
    
    cin >> word;
    while(strcmp(word,"done"))
    {
        sum++;
        cin >> word;
    }
    cout << "You entered a total of " << sum << " words." << endl;
    
    return 0; 
}

//或者
#include <iostream>
#include <cstring>
int main()
{
    using namespace std;
    char word[20];
    int sum = 0;
    
    cout << "Enter words (to stop, type the word done): " << endl;
    
    while(cin >> word && strcmp(word,"done"))
        sum++;
    cout << "You entered a total of " << sum << " words." << endl;
    
    return 0; 
}

9. 編寫一個滿足前一個練習中描述的程式,但使用string物件而不是字元陣列。請在程式中包含string,並使用關係運算符來進行比較測試。

#include <iostream>
#include <string>
int main()
{
    using namespace std;
    string word;
    int sum = 0;
    
    cout << "Enter words (to stop, type the word done): " << endl;
    
    cin >> word;
    while(word != "done")
    {
        sum++;
        cin >> word;
    }
    cout << "You entered a total of " << sum << " words." << endl;
    
    return 0; 
}

//或者
#include <iostream>
#include <string>
int main()
{
    using namespace std;
    string word;
    int sum = 0;
    
    cout << "Enter words (to stop, type the word done): " << endl;
    
    while(cin >> word && word != "done")
        sum++;
    cout << "You entered a total of " << sum << " words." << endl;
    
    return 0; 
}

10. 編寫一個使用巢狀迴圈的程式,要求使用者輸入一個值,指出要顯示多少行。
    然後,程式將顯示相應行數的星號,其中第一行包括一個星號,第二行包括兩個星號,以此類推。
    每一行包含的字元數等於使用者指定的行數,在星號不夠的情況下,在星號前面加上句點。
    該程式執行情況如下:
10.1  for迴圈版

#include <iostream>

int main()
{
    using namespace std;
    int num;
    
    cout << "Enter number of rows: ";
    cin >> num;
    
    for (int i = 1; i <= num; i++)
    {
        for (int j = 0; j < num-i; j++)
            cout << ".";
        for(int k = 0; k < i; k++)
            cout << "*";
        cout << "\n";
    }
    return 0;
}

10.2 while 迴圈版

#include <iostream>

int main()
{
    using namespace std;
    int num;
    
    cout << "Enter number of rows: ";
    cin >> num;
    
    int i = 1;
    int j = 0;
    int k = 0;
    
    while (i <= num)
    {
        j = 0;
        while(j < num-i)
        {
            cout << ".";
            j+=1;
        }
        
        k = 0;
        while(k < i)
        {
            cout << "*";
            k+=1;
        }
        cout << endl;
        i+=1;
    }
    
    return 0;
}

10.3 動態string類物件陣列版

#include <iostream>
#include <string>

int main()
{
    using namespace std;
    int line,i,j,k;
    string point = ".";
    string star = "*";
    string enter = "\n";
    cout << "請輸入要顯示的行數:";
    cin >> line;
    string* pointandstar = new string [line];
    
    for (i=0; i<line; i++)
    {
        for (j=0; j<line-i-1; j++)
        {
            *pointandstar += point;
        }

        for (k=0; k<i+1; k++)
        {
            *pointandstar += star;
        }
        
        *pointandstar +=enter;
    }

    cout << *pointandstar;
    return 0;
}