题目:
结构CandyBar包含3个成员,第一个成员存储了糖块的品牌;第二个成员存储糖块的重量(可以有小数);第三个成员存储了糖块的卡路里含量(整数)。创建一个包含3个元素的CandyBar数组(使用new来动态分配数组),并将它们初始化为所选择的值,然后显示每个结构的内容
源代码:
#define _CRT_SECURE_NO_WARNINGS //vs版本不加这个无法使用strcpy等函数
#include <iostream>
#include <cstring>
struct CandyBar
{
char brand[20]; //品牌
float weight; //重量
int calorie; //卡路里
};
int main()
{
using namespace std;
CandyBar* p = new CandyBar [3];
strcpy(p[0].brand, "xiao");
p[0].weight = 1.3;
p[0].calorie = 150;
strcpy(p[1].brand, "tian");
p[1].weight = 2.3;
p[1].calorie = 250;
strcpy(p[2].brand, "cai");
p[2].weight = 3.3;
p[2].calorie = 350;
for (int i = 0; i < 3; i++)
{
cout << "糖的品牌: " << p[i].brand << " "
<< "糖的重量: " << p[i].weight << " "
<< "糖的卡路里: " << p[i].calorie << endl;
}
delete[] p; //释放动态分配的空间
return 0;
}
演示效果:
如果朋友你感觉文章的内容对你有帮助,可以点赞,关注文章和专栏以及关注我哈,嘿嘿嘿我会定期更新文章的,谢谢朋友你的支持哈
标签:CandyBar,weight,22,int,brand,练习,C++,strcpy,calorie From: https://blog.csdn.net/little_startoo/article/details/141311133