编程菜鸟的日记-初学尝试编程-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;
}

 

posted @ 2013-11-20 15:27  编程的爬行者  阅读(106)  评论(0编辑  收藏  举报