c++如何输出这个文章

struct ca
{
char c;
ca *next;
};
void InitList(ca *L)
{
cout<<"输入一页文字(以#结束)"<<endl;
while((L->c=getchar())!='#')
{
L->next=new ca;
L=L->next;
}
L->next=NULL;
}

一只斗牛犬
浏览 601回答 1
1回答

翻翻过去那场雪

void PrintList(ca *L){&nbsp; &nbsp; while (L->c != '#'&&L->next!=nullptr)&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; std::cout << L->c;&nbsp; &nbsp; &nbsp; &nbsp; L = L->next;&nbsp; &nbsp; }}
打开App,查看更多内容
随时随地看视频慕课网APP