错在何处,应该r如何改正
#include<iostream>
using namespace std;
typedef int ElemType;
struct List{
ElemType *list;
int size;
int MaxSize;
};
int main()
{
List L;
L.MaxSize=10;
L.list=new ElemType[L.MaxSize];
L.size=5;
for(int i=0;i<5;i++)
cin>>L.list[i]>>endl;
for(int j=0;j<5;j++)
cout<<L.list[j]<<endl;
return 0;
}