编程菜鸟的日记-初学尝试编程-C++ Primer Plus 第4章编程练习5
#include <iostream>
using namespace std;
struct CandyBar
{
char kind[20];
float weight;
int calory;
};
int main()
{
CandyBar snack=
{
"Mocha Munch",
2.3,
350
};
cout<<"The kind of snack is: "<<snack.kind<<endl;
cout<<"The weight of snack is: "<<snack.weight<<endl;
cout<<"The calory of snack is: "<<snack.calory<<endl;
system("pause");
return 0;
}