本文主要是介绍C++ Primer Plus第五章编程练习,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1
编写一个要求用户输入两个整数的程序。该程序将计算并输出这两个整数之间(包括这两个整数)所有整数的和。这里假设先输入较小的整数。例如,如果用户输入的是2和9,则程序将指出2~9之间所有整数的和为44。
#include <iostream>int main()
{using namespace std;int min = 0, max = 0, i = 0, sum = 0;cout<<"Please input the min integer: ";cin>>min;cout<<"Please input the max integer: ";cin>>max;for(i=min; i<=max; i++){sum = sum + i;}cout<<"The sum of "<<min<<" ~ "<<max<<" is "<<sum<<endl;return 0;
}
以下为程序运行结果:
2
使用array对象(而不是数组)和long double(而不是long long)重新编写程序清单5.4,并计算100!的值。
#include <iostream>
#include <array>const int ArSize = 16;
int main()
{using namespace std;array<long double, ArSize> factorials;int i;factorials[1] = factorials[0] = 1LL;for(i=2; i<ArSize; i++){factorials[i] = i * factorials[i-1];}for(i=0; i<ArSize; i++){cout<<i<<"! = "<<factorials[i]<<endl;}return 0;
}
以下为程序运行结果:
3
编写一个要求用户输入数字的程序。每次输入后,程序都将报告到目前为止,所有输入的累计和。当用户输入0时,程序结束。
#include <iostream>int main()
{using namespace std;double num, sum = 0;do {cout<<"\nPlease input a numbre(0 to end): ";cin>>num;sum = sum + num;cout<<"The sum is "<<sum;} while (num != 0);cout<<"\nProgram End!"<<endl;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的投资价值,并显示此时两个人的投资价值。
#include <iostream>const double Daphne_rate = 0.10;
const double Cleo_rate = 0.05;
const double capital = 100;
int main()
{using namespace std;double Daphne_money = capital, Cleo_money = capital;int year = 0;while (Cleo_money<=Daphne_money) {Daphne_money += capital * Daphne_rate;Cleo_money += Cleo_money * Cleo_rate;year++;}cout<<"After "<<year<<" years:\n";cout<<"Cleo money is "<<Cleo_money<<"\n";cout<<"Daphne money is "<<Daphne_money<<endl;return 0;
}
以下为程序运行结果:
5
假设要销售《C++ For Fools》一书。请编写一个程序,输入全年中每个月的销售量(图书数量,而不是销售额)。程序通过循环,使用初始化为月份字符串的char *数组(或string对象数组)逐月进行提示,并将输入的数据储存在一个int数组中。然后,程序计算数组中各元素的总数,并报告这一年的销售情况。
#include <iostream>
#include <string>int main()
{using namespace std;string month[12] = {"January","February","March","April","May","June","July","August","September","October","November","December"};int num[12] = {0}, i, sum = 0;for(i=0; i<12; i++){cout<<"Please input "<<month[i]<<" month num: ";cin>>num[i];sum += num[i];}cout<<"\nThe sum is "<<sum<<endl;return 0;
}
以下为程序运行结果:
6
完成编程练习5,但这一次使用一个二维数组来存储输入—3年中每个月的销售量。程序将报告每年销售量以及三年的总销售量。
#include <iostream>
#include <string>int main()
{using namespace std;string month[12] = {"January","February","March","April","May","June","July","August","September","October","November","December"};int num[3][12] = {0}, i, j, sum[3] = {0};for(i=0; i<3; i++){cout<<"*****************"<<i+1<<" Year*********************\n";for(j=0; j<12; j++){cout<<"Please input "<<month[j]<<" month num: ";cin>>num[i][j];sum[i] += num[i][j];}cout<<"*****************End*********************\n";}for(i=0; i<3; i++){cout<<"\nThe "<<i+1<<" year number is "<<sum[i]<<"\n";}cout<<"\nThe sum of 3 year is "<<sum[0]+sum[1]+sum[2]<<endl;return 0;
}
以下为程序运行结果:
7
设计一个名为car的结构,用它存储下述有关汽车的信息:生产商(存储在字符数组或string对象中的字符串)、生产年份(整数)。编写一个程序,向用户询问有多少辆汽车。随后,程序使用new来创建一个由相应数量的car结构组成的动态数组。接下来,程序提示用户输入每辆车的生产商(可能由多个单词组成)和年份信息。请注意,这需要特别小心,因为它将交替读取数值和字符串(参见第4章)。最后,程序将显示每个结构的内容。该程序的运行情况如下:
#include <iostream>
#include <string>using namespace std;
struct car{string company;int year;
};
int main()
{int num = 0, i;cout<<"How many cars do you wish to catalog? ";cin>>num;cin.get();car *c = new car[num];for(i=0; i<num; i++){cout<<"Car #"<<i+1<<":\n";cout<<"Please enter the make: ";getline(cin, c[i].company);cout<<"Please enter the year made: ";cin>>c[i].year;cin.get();}cout<<"Here is your collection: \n";for(i=0; i<num; i++){cout<<c[i].year<<" "<<c[i].company<<"\n";}delete [] c;return 0;
}
以下为程序运行结果:
8
编写一个程序,它使用一个char数组和循环来每次读取一个单词,直到用户输入done为止。随后,该程序指出用户输入了多少个单词(不包括done在内)。下面是该程序的运行情况:
您应在程序中包含头文件cstring,并使用函数strcmp()来进行比较测试。
#include <iostream>
#include <cstring>const int Size = 50;
int main()
{using namespace std;char word[Size];int count = 0;cout<<"Enter words (to stop, type the word done):\n";while (1){cin>>word;if(!strcmp(word, "done")){break;}count++;}cout<<"You entered a total of "<<count<<" words.\n";return 0;
}
以下为程序运行结果:
9
编写一个满足前一个练习中描述的程序,但使用string对象而不是字符数组。请在程序中包含头文件string,并使用关系运算符来进行比较测试。
#include <iostream>
#include <string>const int Size = 50;
int main()
{using namespace std;string word;int count = 0;cout<<"Enter words (to stop, type the word done):\n";while (1){cin>>word;if(word == "done"){break;}count++;}cout<<"You entered a total of "<<count<<" words.\n";return 0;
}
以下为程序运行结果:
10
编写一个使用嵌套循环的程序,要求用户输入一个值,指出要显示多少行。然后,程序将显示相应行数的星号,其中第一行包括一个星号,第二行包括两个星号,依此类推。每一行包含的字符数等于用户指定的行数,在星号不够的情况下,在星号前面加上句点。该程序的运行情况如下:
#include <iostream>int main()
{using namespace std;int num = 0, i, j;cout<<"Enter number of rows: ";cin>>num;for(i=0; i<num; i++){for(j=0; j<(num-(i+1)); j++){cout<<".";}for(j=0; j<i+1; j++){cout<<"*";}cout<<"\n";}return 0;
}
以下为程序运行结果:
这篇关于C++ Primer Plus第五章编程练习的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!