使用new来为动态分配结构数组并赋值

// practice4-9.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include 
#include 
#include 
using namespace std;
struct CandyBar 
{
	string brand;
	double weight;
	int calorie;
};
int _tmain(int argc, _TCHAR* argv[])
{
	int i;
	CandyBar * ps =new CandyBar[3];
	//为动态结构数组赋值
	ps[0].brand="pizza hut";
	ps[1].brand="pizza down";
	cout<<"Enter ps[2] brand:";
	getline(cin,ps[2].brand);
	cout<<"Enter weight:";
	cin>>ps[2].weight;
	cout<<"Enter calorie:";
	cin>>ps[2].calorie;
	for (i=0;i<3;++i)
	{
		cout<
为new创建的动态结构数组赋值方法还是有问题!应该还有更简单的

你可能感兴趣的:(c++学习历程)