第4章|第4章 复合类型
复习题
- 如何声明下述数据?
a. actor是由30个char
组成的数组。
答:char actor[30];
。
b. betsie是由100个short
组成的数组。
答:short betsie[100];
。
c. chuck是由13个float
组成的数组。
答:float chuck[13];
。
d. dipsea是由64个long double
组成的数组。
答:long double dipsea[64];
。 - 使用模板类
array
而不是数组来完成问题1。
答:std::array
。actor;
答:std::array betsie;
。
答:std::array
。chuck;
答:std::array
。dipsea; - 声明一个包含5个元素的int数组,并将它初始化为前5个正奇数。
答:int array[5] = {1,3,5,7,9};
。 - 编写一条语句,将问题3中数组第一个元素和最后一个元素的和赋给变量even。
答:int even = array[0] + array[4];
。 - 编写一条语句,显示
float
数组ideas中的第2个元素的值。
答:cout << ideas[1] << endl;
。 - 声明一个
char
的数组,并将其初始化为字符串“cheeseburger”。
答:没有终止符。char str[] = {'c', 'h', 'e', 'e', 's', 'e', 'b', 'u', 'r', 'g', 'e', 'r'};
。__
答:char str[] = {'c', 'h', 'e', 'e', 's', 'e', 'b', 'u', 'r', 'g', 'e', 'r', '\0'};
更好的方式:
char str[] = "cheeseburger";
char str[13] = "cheeseburger";
- 声明一个
string
对象,并将其初始化为字符串“Waldorf Salad”。
答:string str = "Waldrof Salad ";
。
补充,如果没有使用using
编译指令,则为:
std::string str = "Waldrof Salad";
- 设计一个描述鱼的结构声明。结构中应当包括品种、重量(整数,单位为盎司)和长度(英寸,包括小数)。
答:
struct BlkFish
{
// char*szVariety;
charszVariety[20];
ints4Weight;
floatfLength;
};
- 声明一个问题8中定义的结构的变量,并对它进行初始化。
答:
BlkFish blkFish = {"Shark", 1000, 200.1f};
- 用
enum
定义一个名为Response的类型,它包含Yes、No和MayBe等枚举变量,其中Yes的值为1,No为0,MayBe为2。
答:
enum Response
{
// No = 0,
No,
Yes,
Maybe
};
- 假设ted是一个
double
变量,请声明一个指向ted的指针,并使用该指针来显示ted的值。
答:
double* pdTed = &ted;
cout << *pdTed << endl;
- 假设treacle是一个包含10个元素的
float
数组,请声明一个指向treacle的第一个元素的指针,并使用该指针来显示数组的第一个元素和最后一个元素。
答:
float treacle[10];
float* p = &treacle[0];
// cout << *p << " " << *(p+9) << endl;
cout << p[0] << " " << p[9] << endl;
- 编写一段代码,要求用户输入一个正整数,然后创建一个动态的
int
数组,其中包含的元素数目等于用户输入的值。首先使用new
来完成这项任务,再使用vector
对象来完成这项任务。
答:
ints4Number;
int*ps4Array;
cin >> s4Number;
// new
ps4Array = new int[s4Number];
// vector
// vector ps4Array;
vector ps4Array(s4Number);
- 下面的代码是否有效?如果有效,它将打印出什么结果?
cout << (int *) "Home of the jolly bytes";
答:有效。会打印出这句的地址。 - 编写一段代码,给问题8中描述的结构动态分配内存,再读取该结构的成员的值。
答:
struct BlkFish
{
char*szVariety;
ints4Weight;
floatfLength;
};
// BlkFish* pblkFish = new BlkFish{"Shark", 1000, 200.1f};
// 没有这种写法,笑哭
// cout << pblkFish->szVariety << " " << pblkFish->s4Weight << " " << pblkFish->fLength << endl;
BlkFish* pblkFish = new BlkFish;
cout << "Enter kind of fish:";
cin >> pblkFish->szVarity;
- 程序清单4.6指出了混合输入数字和一行字符串时存储的问题。如果将下面的代码:
cin.getline(address, 80);
替换为:
cin >> address;
将对程序的运行带来什么影响?
答:cin >> address
遇到终止符则停止取值;cin.getline
获取整行的值。
答:使用cin >> address
将使得程序跳过空白,直到找到非空白字符为止。然后它将读取字符,直到再次遇到空白为止。因此,它将跳过数字输入后的换行符,从而避免这种问题。另一方面,它只读取一个单词,而不是整行。 - 声明一个
vector
对象和一个array
对象,它们都包含10个sting
对象。指出所需的头文件,但不要使用using
。使用const
来指定要包含的string
对象数。
答:
// #include 删除
#include// 补充
#include
#include const int s4Num = 5;
// or const int s4Num {5};
int main()
{
// vector vcStr;
// array aStr = array()
std::vectorvstr(s4Num);
std::arrayastr;
}
编程练习
- 编写一个
C++
程序,如下述输出示例所示的那样请求并显示信息:
What is your first name? Betty Sue
What is your last name? Yewe
What letter grade do you deserve? B
What is your age? 22
Name: Yewe, Betty Sur
Grade: C
Age:22
注意,该程序应该接受的名字包含多个单词。另外,程序将向下调整成绩,即向上调一个字母。假设用户请求A、B或C,所以不必担心D和F之间的空档。
#include
using namespace std;
const float g_fMile2KM = 1.609344f;
const float g_fGallon2Liter = 3.7854118f;
int main(void)
{
charfirstName[20] = { 0 };
charlastName[20] = { 0 };
chargrade;
intage;
cout << "What is your first name?: ";
cin >> firstName;
cout << "What is your last name?: ";
cin >> lastName;
cout << "What letter grade do you deserve?: ";
cin >> grade;
cout << "What is your age?: ";
cin >> age;
cout << "Name: " << lastName << " " << firstName << endl;
cout << "Grade: " << char(grade+1) << endl;
cout << "Age: " << age << endl;
return 0;
}
- 修改程序清单4.4,使用
C++ string
类而不是char
数组。
#include
#include
using namespace std;
const float g_fMile2KM = 1.609344f;
const float g_fGallon2Liter = 3.7854118f;
int main(void)
{
stringfirstName;
stringlastName;
chargrade;
intage;
cout << "What is your first name?: ";
cin >> firstName;
cout << "What is your last name?: ";
cin >> lastName;
cout << "What letter grade do you deserve?: ";
cin >> grade;
cout << "What is your age?: ";
cin >> age;
cout << "Name: " << lastName << " " << firstName << endl;
cout << "Grade: " << char(grade+1) << endl;
cout << "Age: " << age << endl;
return 0;
}
- 编写一个程序,它要求用户首先输入其名,然后输入其姓;然后程序使用一个逗号和空格将姓和名组合起来,并存储和显示结合结果。请使用
char
数组和头文件cstring
中的函数。下面是该程序运行时的情形:
Enter your first name:Flip
Enter your last name: Fleming
Here's the information in a single string: Fleming, Filp
#include
#include
using namespace std;
int main(void)
{
charfirstname[20] = { 0 };
charlastname[10] = { 0 };
cout << "Enter your first name:";
cin >> firstname;
cout << "Enter your last name:";
cin >> lastname;
strcat_s(firstname, 20, ", ");
strcat_s(firstname, 20, lastname);
cout << "Here's the information in a single string: " << firstname << endl;
return 0;
}
- 编写一个程序,它要求用户首先输入其名,然后输入其姓;然后程序使用一个逗号和空格将姓和名组合起来,并存储和显示结合结果。请使用
string
对象和头文件string
中的函数。下面是该程序运行时的情形:
Enter your first name:Flip
Enter your last name: Fleming
Here's the information in a single string: Fleming, Filp
#include
#include
using namespace std;
int main(void)
{
stringfirstname, lastname;
cout << "Enter your first name:";
cin >> firstname;
cout << "Enter your last name:";
cin >> lastname;
firstname += ", ";
firstname += lastname;
cout << "Here's the information in a single string: " << firstname << endl;
return 0;
}
- 结构CandyBar包含3个成员。第一个成员存储了糖块的品牌;第二个成员存储糖块的重量(可以有小数);第三个成员存储了糖块的卡路里含量(整数)。请编写一个程序,声明这个结构,创建一个名为snack的CandyBar变量,并将其成员分别初始化为“Mocha Munch”,2.3和350。初始化应在声明snack时进行。最后,程序显示snack变量的内容。
#include
#include
using namespace std;
struct CandyBar {
stringkind;
floatweight;
intCalorie;
};
int main(void)
{
CandyBarsnack = {"Mocha Munch", 2.3f, 350};
cout << "kind: " << snack.kind << " Weight: " << snack.weight << " Calorie: " << snack.Calorie << endl;
return 0;
}
- 结构CandyBar包含3个成员,如编程练习5所示。请编写一个程序,创建一个包含3个元素的CandyBar数组,并将它们初始化为所选择的值,然后显示每个结构的内容。
#include
#include
using namespace std;
struct CandyBar {
stringkind;
floatweight;
intCalorie;
};
int main(void)
{
CandyBarsnack[3] = {{"Mocha Munch", 2.3f, 350}, {"Mocha Munch", 2.3f, 350}, {"Mocha Munch", 2.3f, 350}};
for (int i = 0;
i < 3;
i++)
{
cout << "kind: " << snack[i].kind << " Weight: " << snack[i].weight << " Calorie: " << snack[i].Calorie << endl;
}return 0;
}
- William Wingate从事比萨饼分析服务。对于每个披萨饼,他都需要记录下列信息:
- 披萨饼公司的名称,可以有多个单词组成
- 披萨饼的直径
- 披萨饼的重量
请设计一个能够存储这些信息的结构,并编写一个使用这种结构变量的程序。程序将请求用户输入上述信息,然后显示这些信息。请使用cin
(或者它的方法)和cout
。
#include
#include
using namespace std;
struct Pizza {
stringkind;
intdiameter;
floatweight;
};
int main(void)
{
Pizzapizza;
cout << "Enter pizza's kind: ";
cin >> pizza.kind;
cout << "Enter pizza's diameter: ";
cin >> pizza.diameter;
cout << "Enter pizza's weight: ";
cin >> pizza.weight;
cout << " pizza's kind: " << pizza.kind << " pizza's diameter: " << pizza.diameter << " pizza's weight: " << pizza.weight << endl;
return 0;
}
- 完成编程练习7,但是用
new
来为结构分配内存,而不是声明一个结构变量。另外,让程序在请求输入披萨饼公司名称志气啊你输入披萨饼的直径。
#include
#include
using namespace std;
struct Pizza {
stringkind;
intdiameter;
floatweight;
};
int main(void)
{
Pizza*pizza = new Pizza;
cout << "Enter pizza's kind: ";
cin >> pizza->kind;
cout << "Enter pizza's diameter: ";
cin >> pizza->diameter;
cout << "Enter pizza's weight: ";
cin >> pizza->weight;
cout << " pizza's kind: " << pizza->kind << " pizza's diameter: " << pizza->diameter << " pizza's weight: " << pizza->weight << endl;
delete pizza;
return 0;
}
- 完成编程练习6,但是用
new
来动态分配数组,而不是声明一个包含3个元素的CandyBar数组。
#include
#include
using namespace std;
struct CandyBar {
stringkind;
floatweight;
intCalorie;
};
int main(void)
{
CandyBar*snack = new CandyBar[3]{ {"Mocha Munch", 2.3f, 350}, { "Mocha Munch", 2.3f, 350 }, { "Mocha Munch", 2.3f, 350 } };
for (int i = 0;
i < 3;
i++)
{
cout << "kind: " << snack[i].kind << " Weight: " << snack[i].weight << " Calorie: " << snack[i].Calorie << endl;
}delete[] snack;
return 0;
}
- 编写一个程序,让用户输入三次40码跑的成绩(如果您愿意,也可以让用户输入40米跑的成绩)。并显示次数和平均成绩。请使用一个
array
对象来存储数据(如果编译器不支持array
类,请使用数组)。
#include
#include
#include
using namespace std;
const int times = 3;
int main(void)
{
array run;
floattotal = 0;
floataverage;
for ( int i = 0;
i < times;
i++ )
{
cout << "Enter your " << i << " times score: ";
cin >> run[i];
total += run[i];
}average = total / times;
cout << "Average is: " << average << endl;
return 0;
}
推荐阅读
- 第6.2章(设置属性)
- 2018-02-06第三天|2018-02-06第三天 不能再了,反思到位就差改变
- 第三节|第三节 快乐和幸福(12)
- EffectiveObjective-C2.0|EffectiveObjective-C2.0 笔记 - 第二部分
- android第三方框架(五)ButterKnife
- 开学第一天(下)
- 野营记-第五章|野营记-第五章 讨伐梦魇兽
- 2018年11月19日|2018年11月19日 星期一 亲子日记第144篇
- 第326天
- 跌跌撞撞奔向你|跌跌撞撞奔向你 第四章(你补英语,我补物理)