C++ Primer Plus章节编程练习第六章

1

题目

  编写一个程序,读取键盘输入,直到遇到@符号为止,并回显输入(数字除外),同时将大写字符转换为小写,将小写字符转换为大写(别忘了cctype 函数系列)。

题解

#include<iostream>
#include<cctype>
using namespace std;
int main(){
    char ch;
    while((ch=cin.get())!='@'){                 //当读取的字符不是@时进行循环
        if(isdigit(ch)) continue;               //数字不输出
        else{
            if(isalpha(ch)){                    //如果时字符则进行大小写转换
                if(isupper(ch)) ch=tolower(ch);
                else ch=toupper(ch);
            }
            cout<<ch;                           //输出除了数字以外的所有字符
        }
    }
    return 0;
}

2

题目

  编写一个程序,最多将10个donation值读入到-一个double数组中(如果您愿意,也可使用模板类array)。程序遇到非数字输入时将结束输入,并报告这些数字的平均值以及数组中有多少个数字大于平均值。

题解

#include<iostream>
#include<array>
using namespace std;
int main(){
    const int ArSIZE=10;
    array<double,ArSIZE> myarray;
    int i=0,count=0;
    double sum=0.0;
    cout<<"Please enter no more than "<<ArSIZE<<" numbers: \n"; //通过提示让用户输入10个数字
    cout<<"# "<<i+1<<": ";
    while(i<10&&cin>>myarray[i]){
        sum+=myarray[i];
        i++;
        if(i<10)
            cout<<"# "<<i+1<<": ";
    }
    if(cin.fail()) cout<<"Input terminated by data mismatch.\n";//判定结束的情况
    if(i==0) cout<<"No data processed.\n";                      //如果0个数据,则输出无数据
    else{                                                       //否则按照要求统计并输出超出平均值的数字个数
        sum/=i;
        for(int k=0;k<i;k++){
            if(myarray[k]>sum)
                count++;
        }
        cout<<count<<" numbers greater than the average("<<sum<<") of all numbers!\n";
    }

    return 0;
}

3

题目

  编写一个菜单驱动程序的雏形。该程序显示一个提供4个选项的菜单---每 个选项用一-个字母标记。如果用户使用有效选项之外的字母进行响应,程序将提示用户输入-一个有效的字母,直到用户这样做为止。然后,该程序使用一条switch语句,根据用户的选择执行一个简单操作。该程序的运行情况如下:

Please enter one of the: following choices:
c) carnivore    p) pianist
t) tree         g) game
f
Please enter a c,p, t,or g: q
Please enter a c,p, t,or g: t
A maple is a tree.

题解

#include<iostream>
using namespace std;
void showmenu();
void carnivore();
void pianist();
void tree();
void game();
int main(){
    showmenu();                                 //显示菜单
    char choice;
    while(cin>>choice){
        SWITCH:switch(choice){                  //添加goto的标记
            case 'c': carnivore();
                      break;
            case 'p': pianist();
                      break;
            case 't': tree();
                      break;
            case 'g': game();
                      break;  
            default : cout<<"Please enter a c, p, t, or g:";
                      cin>>choice;              //不符合输入的要求重新输入并判定
                      goto SWITCH;
                      break;
        }
        showmenu();                             //展示下一轮菜单
    }
    cout<<"Bye!\n";
    return 0;
}
void showmenu(){
    cout<<"Please enter one of the following choices:\n"
          "c) carnivore      p) pianist\n"
          "t) tree           g) game\n"
          "Please enter a c, p, t, or g:";
}
void carnivore(){
    cout<<"This is the choice of carnivore().\n";
}
void pianist(){
    cout<<"This is the choice of pianist().\n";
}
void tree(){
    cout<<"This is the choice of tree().\n";    
}
void game(){
    cout<<"This is the choice of game().\n";
}

4

题目

  加入Benevolent Order of Programmer后,在BOP大会上,人们便可以通过加入者的真实姓名、头衔或秘密BOP姓名来了解他(她)。请编写一个程序,可以使用真实姓名、头衔、秘密姓名或成员偏好来列出成员。编写该程序时,请使用下面的结构:

// Benevolent Order of Programmers name st ructure
struct bop{
    char fullname[strsize]; //real name
    char title[strsize];    //job title
    char bopname[strsize];  //secret BOP name
    int preference;         //0 = fullname, 1 = title, 2 = bopname
};

  该程序创建一个由上述结构组成的小型数组,并将其初始化为适当的值。另外,该程序使用一个循环,让用户在下面的选项中进行选择:

a. display by name      b. display by title
c. display by bopname   d. display by preference
q. quit

  注意,“display by preference"并不意味着显示成员的偏好,而是意味着根据成员的偏好来列出成员。例如,如果偏好号为1,则选择d将显示程序员的头衔。该程序的运行情况如下:

Benevolent Order of Programmers Report
a. display by name      b. display by title
c. display by bopname   d. display by preference
q. quit
Enter your choice: a
Wimp Macho
Raki Rhodes
Celia Laiter
Hoppy Hipman
Pat Hand
Next choice: d
Wimp Macho
Junior Programmer
MIPS
Analyst Trainee
LOOPY
Next choice: q
Bye!

题解

#include<iostream>
#include<cstring>
using namespace std;
const int strsize=30;
struct bop{
    char fullname[strsize]; //真实姓名
    char title[strsize];    //工作头衔
    char bopname[strsize];  //秘密bop名
    int preference;         //成员偏好0=fullname, 1= title, 2= bopname
};
bop members[5]={            //使用数组保存五个元素
    {"Wimp Macho","Wimp Macho","abc",0},
    {"Raki Rhodes","Junior Programmer","def",1},
    {"Celia Laiter","MIPS","ghi",2},
    {"Hoppy Hipman","Analyst Trainee","jkl",0},
    {"Pat Hand","LOOPY","mno",1},
};
void showmenu();
void display(char choice);
int main(){
    showmenu();                                 //显示菜单
    char choice;
    int flag=1;
    while(flag&&cin>>choice){                   //读取正确且退出标记不为0时
        SWITCH:switch(choice){                  //添加goto的标记
            case 'a':
            case 'b':
            case 'c': 
            case 'd': display(choice);          //需要展示
                      cout<<"Next Choice: ";
                      break;  
            case 'q': flag=0;                   //退出标记
                      break;
            default : cout<<"Please enter a, b, c, d, or q:";
                      cin>>choice;              //不符合输入的要求重新输入并判定
                      goto SWITCH;
                      break;
        }
    }
    cout<<"Bye!\n";
    return 0;
}
void showmenu(){
    cout<<"Benevolent Oder of Programmers Report:\n"
          "a. display by name      b. display by title\n"
          "c. display by bopname   d. display by preference\n"
          "q. quit\n"
          "Enter your choice: ";
}
void display(char choice){                      //分类显示个人信息
    switch(choice){
        case 'a': for(int i=0;i<5;i++)
                      cout<<members[i].fullname<<endl;
                  break;
        case 'b': for(int i=0;i<5;i++)
                      cout<<members[i].title<<endl;
                  break;
        case 'c': for(int i=0;i<5;i++)
                      cout<<members[i].bopname<<endl;
                  break;
        case 'd': for(int i=0;i<5;i++){
                      switch(members[i].preference){
                          case 0 :cout<<members[i].fullname<<endl;break;
                          case 1 :cout<<members[i].title<<endl;break;
                          case 2 :cout<<members[i].bopname<<endl;break;
                          default:break;
                      }
                  }
                  break;
        default : break;
    }
}

5

题目

  在Ncutronia王国,货币单位是tvarp,收入所得的税的计算方式如下:

5000 tvarps: 不收税
5001~15000 tvarps: 10%
15001~35000 tvarps: 15%
35000 tvarps 以上: 20%

  例如,收入为38000 tvarps时,所得税为5000 x 0.00+ 10000 x 0.10 + 20000x0.15 + 3000x 0.20,即4600 tvarps。 请编写一个程序,使用循环来要求用户输入收入,并报告所得税。当用户输入负数或非数字时,循环将结束。

题解

#include<iostream>
using namespace std;
int main(){
    double rates[4]={0,0.1,0.15,0.20};
    double tax[3]={0.0,1000.0,3000.0};
    double number;
    cout<<"Please enter your earning:";
    while(cin>>number&&number>=0){
        double yourtax=0.0;
        if(number>35000){
            for(int i=0;i<3;i++) yourtax+=tax[i];
            yourtax+=(number-35000)*rates[3];
        }
        else if(number>15000){
            for(int i=0;i<2;i++) yourtax+=tax[i];
            yourtax+=(number-15000)*rates[2];
        }
        else if(number>5000){
            for(int i=0;i<1;i++) yourtax+=tax[i];
            yourtax+=(number-5000)*rates[1];
        }
        cout<<"Your tax: "<<yourtax<<endl;
        cout<<"Please enter your next earning: ";
    }
    cout<<"Bye!\n";
    return 0;
}

6

题目

  编写一个程序,记录捐助给“维护合法权利团体”的资金。该程序要求用户输入捐献者数目,然后要求用户输入每一个捐献者的姓名和款项。这些信息被储存在一个动态分配的结构数组中。每个结构有两个成员:用来储存姓名的字符数组(或string对象)和用来存储款项的double成员。读取所有的数据后,程序将显示所有捐款超过10000的捐款者的姓名及其捐款数额。该列表前应包含一个标题,指出下面的捐款者是重要捐款人(Grand Patrons)。然后,程序将列出其他的捐款者,该列表要以Patrons开头。如果某种类别没有捐款者,则程序将打印单词“none"。该程序只显示这两种类别,而不进行排序。

题解

#include<iostream>
#include<string>
#include<vector>
using namespace std;
struct Patron{
    string name;
    double number;
};
int main(){
    int n,flag=0;
    cout<<"Enter the number of Patron: "<<endl;
    cin>>n;
    vector<Patron> v(n);
    cin.get();                                  //读入要输入的个数
    for(int i=0;i<n;i++){                       //读取n组数据
        cout<<"# "<<i+1<<endl;
        cout<<"Enter the name of Patron: ";
        getline(cin,v[i].name);                 //读取捐款人的名称
        cout<<"Enter the number of money: ";
        cin>>v[i].number;                       //读取捐款人的数额
        cin.get();
    }
    cout<<"------Grand Patrons------"<<endl;    //先输出重要捐款人
    for(int i=0;i<n;i++){
        if(v[i].number>10000){
            flag=1;
            cout<<v[i].name<<' '<<v[i].number<<endl;
        }
    }
    if(flag==0) cout<<"none"<<endl;             //如果没有数据输出,则输出none

    flag=0;
    cout<<"-------- Patrons --------"<<endl;    //再输出非重要捐款人
    for(int i=0;i<n;i++){
        if(v[i].number<=10000){
            flag=1;
            cout<<v[i].name<<' '<<v[i].number<<endl;
        }
    }
    if(flag==0) cout<<"none"<<endl;

    return 0;
}

7

题目

  编写一个程序,它每次读取一个单词,直到用户只输入q。然后,该程序指出有多少个单词以元音打头,有多少个单词以辅音打头,还有多少个单词不属于这两类。为此,方法之一是,使用isalpha()来区分以字母和其他字符打头的单词,然后对于通过了isalpha()测试的单词,使用if或switch语句来确定哪些以元音打头。该程序的运行情况如下:

Enter words (q to quit):
The 12 awesome oxen ambled
quietly across 15 meters of lawn. q
5 words beginning with vowels
4 words beginning with consonants
2 others

题解

#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int main(){
    string word;
    int vowels=0,consonants=0,others=0;
    while(cin>>word&&word!="q"){            //读取单词如果不是q则继续循环
        char ch=word[0];
        if(isalpha(ch)){                    //如果第一个字符是英文字符则进行统计
            if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
                vowels++;
            else consonants++;
        }
        else
            others++;                       //否则统计为其他字符
    }
    cout<<vowels<<" words beginning with vowels"<<endl;
    cout<<consonants<<" words beginning with consonants"<<endl;
    cout<<others<<" others"<<endl;          //输出最后的结果
    return 0;
}

8

题目

  编写一个程序,它打开一一个文件文件,逐个字符地读取该文件,直到到达文件末尾,然后指出该文件中包含多少个字符。

题解

#include<iostream>
#include<fstream>
using namespace std;
int main(){
    ifstream inFile;
    inFile.open("8.txt");
    char ch;
    int count=0;
    while(inFile.get(ch)&&!inFile.eof()){   //如果能够正常读入字符且未到达文件结尾,则对字符进行计数
        count++;
    }
    cout<<"There are "<<count<<" characters in the file.\n";
    return 0;
}

9

题目

  完成编程练习6,但从文件中读取所需的信息。该文件的第一项应为捐款人数,余下的内容应为成对的行。在每一对中,第一行为捐款人姓名,第二行为捐款数额。即该文件类似于下面:

4
Sam Stone
2000
Freida Flass
100500
Tammy Tubbs
100500
Tammy Tubbs
5000
Rich Raptor
55000

题解

#include<iostream>
#include<fstream>
#include<string>
#include<vector>
using namespace std;
struct Patron{
    string name;
    double number;
};
int main(){
    int n,flag=0;
    fstream in_file;
    in_file.open("9.txt");
    cout<<"Reading data from file: 9.txt"<<endl;
    in_file>>n;
    vector<Patron> v(n);
    in_file.get();                                      //读入要输入的个数
    for(int i=0;i<n;i++){                               //读取n组数据
        getline(in_file,v[i].name);                     //读取捐款人的名称
        in_file>>v[i].number;                           //读取捐款人的数额
        in_file.get();
    }
    cout<<"------Grand Patrons------"<<endl;            //先输出重要捐款人
    for(int i=0;i<n;i++){
        if(v[i].number>10000){
            flag=1;
            cout<<v[i].name<<' '<<v[i].number<<endl;
        }
    }
    if(flag==0) cout<<"none"<<endl;                     //如果没有数据输出,则输出none

    flag=0;
    cout<<"-------- Patrons --------"<<endl;            //再输出非重要捐款人
    for(int i=0;i<n;i++){
        if(v[i].number<=10000){
            flag=1;
            cout<<v[i].name<<' '<<v[i].number<<endl;
        }
    }
    if(flag==0) cout<<"none"<<endl;

    cout<<"Done!\n";
    return 0;
}

当珍惜每一片时光~