大家帮帮我完成作业
输入若干个数据,以9999为结束标志。建立一个链表,并打印该链表的值。 第一堂课老师的任务。不会啊。
想出去玩魔兽
大家帮帮我
#include "iostream.h" #include "malloc.h"
typedef struct Nodedata { float data; struct Nodedata *next; }*Linklist; void main() { Linklist head,p,q; head=(Linklist)malloc(sizeof(Nodedata)); p=(Linklist)malloc(sizeof(Nodedata)); head->next=p; p->next=NULL; cout<<"Please input your number! 9999 is the end !"<<endl; for(;p->data!=9999;) { cin>>p->data; if(p->data!=9999) { q=p; p=(Linklist)malloc(sizeof(Nodedata)); q->next=p; } } cout<<"the nunber that you input is :"<<endl; for(p=head->next;p->data!=9999;p=p->next) cout<<p->data<<" "; cout<<endl; }