摘要: #includeusing namespace std;struct stu{char name[12];struct stu *next;};int main(){struct stu *head,*p;head=new stu;cin>>head->name;p=head->next=new stu;cin>>p->name;p->next=NULL;coutnamename<<endl;return 0;} 阅读全文
posted @ 2013-03-09 00:16 _一千零一夜 阅读(66) 评论(0) 推荐(0) 编辑