一、编程练习
- CandyBar结构包含3个成员,分别为品牌名称、重量和热量。请编写一个函数,参数包含CandyBar的引用、char指针、double和int作为参数,并用最后3个参数作为结构成员的值,其默认值分别为“Millennium Munch”、2.85和350,函数需要显示结构。
#include<iostream>
#include<cstring>
using namespace std;
struct CandyBar
{
char name[40];
double weight;
int calorie;
};
void show(CandyBar &my,const char * na="Millennium Munch",const double we=2.85,const int ca=350)
{
for(int i=0;i<strlen(na);i++)
my.name[i]=na[i];
my.weight=we;
my.calorie=ca;
cout<<"name: ";
for(int i=0;i<strlen(na);i++)
cout<<my.name[i];
cout<<endl;
cout<<"weight: "<<my.weight<<endl;
cout<<"calorie: "<<my.calorie;
}
int main()
{
CandyBar aa={
"hello world",6.6,500};
CandyBar &a=aa;
show(a