5.9.1编写一个要求用户输入两个整数的程序。该程序将计算并输出这两个整数之间(包括这两个整数)所有整数的和。这里假设先输入较小的整数。例如,如果用户输入的是2和9,则程序将指出2-9之间所有整数的和为44.
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
int number1, number2, sum = 0;
cout<<"Please input the first integer: ";
cin>>number1;
cout<<"Please input the second integer( greater than number1): ";
cin>>number2;
for(int i=number1;i<=number2;i++)
sum += i;
cout<<"The sum is "<" between number1 and number2."<return 0;
}
5.9.2使用array对象(而不是数组)和long double (而不是long long)重新编写程序清单5.4,并计算100!的值。
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::array;
int main()
{
array<long double, 101> factorials;
factorials[1] = factorials[0] = 1;
for(int i=2;i1];
for(int i=0;icout<"! = "<return 0;
}
5.9.3编写一个要求用户输入数字的程序。每次输入后,程序都将报告到目前为止,所有输入的累计和。当用户输入0时,程序结束
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
int digit = 1;
int sum = 0;
while(digit != 0)
{
cout<<"Please input a digit(to stop, enter '0'): ";
cin>>digit;
sum += digit;
cout<<"The current sum is: "<return 0;
}
5.9.4Daphne以10%的单利投资了100美元。也就是说,每一年的利润都是投资额的10%,即每年10美元: 利息 = 0.10 * 原始存款 而Cleo以5%的复利投资了100美元。也就是说,利息是当前存款(包括获得的利息)的5%: 利息 = 0.05 * 当前存款
Cleo在第一年投资100美元的盈利是5%——得到了105美元。下一年的盈利是105美元的5%——即5.25美元,依次类推。请编写一个程序,计算多少年后,Cleo的投资价值才能超过Daphne的投资价值,并显示此时两个人的投资价值。
#include
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
const double rate1 = 0.1;
const double rate2 = 0.05;
int i;
double cap1 = 100, cap2 = 100;
double profit1 = 0, profit2 = 0;
for( i=1; profit1 >= profit2 ; i++)
{
profit1 += cap1 * rate1;
profit2 += cap2 * rate2;
cap2 = cap2 * (1 + rate2);
}
cout<<"After "<1<<" years, "<<"Daphne's profit is: "<cout<<"After "<1<<" years, "<<"Cleo's profit is: "<return 0;
}
5.9.5假设要销售《C++ For Fools》一书。请编写一个程序,输入全年中每个月的销售量(图书数量,而不是销售额)。 程序通过循环,使用初始化为月份字符串的char*数组(或string对象数组)逐月进行提示,并将输入的数据储存在一个int数组中。然后,程序计算数组中各元素的总数,并报告这一年的销售情况。
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main()
{
string month[12] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
int sale_number[12], sale_sum = 0;
for(int i=0;i<12;i++)
{
cout<<"In "<",The sale number is ";
cin>>sale_number[i];
sale_sum += sale_number[i];
}
cout<<"The sale's sum is: "<return 0;
}
5.9.6完成编程练习5,但这一次使用一个二维数组来存储输入——3年中每个月的销售量。程序将报告每年的销售量以及三年的总销售量。
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main()
{
string month[12] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
int sale_number[3][12], sale_sum[3] = { 0 };
int all_sale = 0;
for(int i=0;i<3;i++)
{
for(int j=0;j<12;j++)
{
cout<<"In "<",The sale number is ";
cin>>sale_number[i][j];
sale_sum[i] += sale_number[i][j];
}
all_sale += sale_sum[i];
cout<for(int i=1;i<=3;i++)
cout<<"In "<" year, The sale's sum is: "<cout<<"The all sale's sum is: "<return 0;
}
5.9.7设计一个名为car的结构,用它存储下述有关汽车的信息: 生产商(存储在字符数组或string对象中的字符串)、 生产年份(整数)。编写一个程序,向用户询问有多少辆汽车。随后,程序使用new来创建一个由相应数量的car结构组成的动态数组.接下来,程序提示用户输入每辆车的生产商(可能由多个单词组成)和年份信息。请注意,这需要特别小心,因为它将交替读取数值和字符串(参见第4章)。最后,程序将显示每个结构的内容。该程序的运行情况如下:
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
#include
using std::cout;
using std::cin;
using std::endl;
using std::string;
struct Car
{
string make;
int made_year;
};
int main()
{
cout<<"How many cars do you wish to catalog: ";
int car_number;
(cin>>car_number).get();
Car *cars = new Car[car_number];
for(int i=1;i<=car_number;i++)
{
cout<<"Car #"<cout<<"Please enter the make: ";
getline(cin, cars[i-1].make);
cout<<"Please enter the year made: ";
(cin>>cars[i-1].made_year).get();
}
cout<<"Here is your collection: "<for(int i=0;icout<" "<return 0;
}
5.9.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 toal of 7 words.
您应该在程序中包含头文件cstring,并使用函数strcmp()来进行比较测试
#include
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
const char done[5] = "done";
char str[20];
int number = 0;
cout<<"Enter words(to stop, type the word done): "<cin>>str;
while(strcmp(str, done) != 0)
{
cin>>str;
number++;
}
cout<<"You entered a total of "<" words."<return 0;
}
5.9.9编写一个满足前一个练习中描述的程序,但使用string对象而不是字符数组。请在程序中包含头文件string,并使用关系运算符来进行比较测试
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main()
{
const char done[5] = "done";
string str;
int number = 0;
cout<<"Enter words(to stop, type the word done): "<cin>>str;
while(str != done)
{
cin>>str;
number++;
}
cout<<"You entered a total of "<" words."<return 0;
}
5.9.10编写一个使用嵌套循环的程序,要求用户输入一个值,指出要显示多少行。然后,程序将显示相应的行数的星号,其中 第一行包括一个星号,第二行包括两个星号,依次类推。每一行包含的字符数等于用户指定的行数,在星号不够的情况下,在星号前面加上句点。该程序的运行情况如下:
Enter number of rows: 5
….*
…**
..*
.**
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
unsigned int rows;
cout<<"Enter number of rows: ";
cin>>rows;
for(int i=0;ifor(int j=0;j1;j++)
cout<<".";
for(int k=0;k1;k++)
cout<<"*";
cout<return 0;
}
/代码中如有不对的地方还请大家多多指正。/