C++ Primer学习笔记第4章复合类型

4.4.1 在程序中使用结构

//structur.cpp -- a simple structure
#include <iostream>
struct inflatable // structure declaration
{
	char name[20];
	float volume;
	double price;
};

int main(){
	using namespace std;
	inflatable guest = {
		"Gloridous Gloria",//name value
		1.88,				//volume value
		29.99				//price value
	};	//guest is a structure variable of type inflatable
//It's initialized to the indicated values
	inflatable pal = {
		"Audacious Arthur",
		3.12,
		32.99
	};//pal is a second variable of type inflatable
//Note:some implementations require using 
//static inflatable guest = 
	cout << "Expand your guest list with " << guest.name;
	cout << " and " << pal.name << "!\n";
	//pal.name is the name member of the pal variable
	cout << "You can have both for $";
	cout << guest.price + pal.price << "!\n";
	return 0;
}

下面是程该程序的输出:

Expand your guest list with Gloridous Gloria and Audacious Arthur!
You can have both for $62.98!

4.4.5 结构数组

程序清单4.13  arrstruc.cpp

//structur.cpp -- a simple structure
#include <iostream>
struct inflatable // structure declaration
{
	char name[20];
	float voluem;
	double price;
};

int main() {
	using namespace std;
	inflatable guests[2] =
	{
		{"Bambi",0.5,21.99},
		{"Godzilla", 2000, 565.99}
	};

	cout << "The guesta " << guests[0].name << " and " << guests[1].name
		<< "\n have a combind volume of "
		<< guests[0].voluem + guests[1].voluem << " cubic feet.\n";
	return 0;
}

下面是该程序的输出:

The guesta Bambi and Godzilla
have a combind volume of 2000.5 cubic feet.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值