{
cout<<"输入的不是数字,请重新输入,按 0 返回!"<<endl;
cin>>str;
}
p1->num=atoi(str.c_str());
if(p1->num!=0)
{
cout<<"请输入图书的价格"<<endl;
cin>>str;
while(!check(str))
{
cout<<"输入的不是数字,请重新输入,按 0 返回!"<<endl;
cin>>str;
}
p1->price=atof(str.c_str());
}
else
{
delete p1;
p2=NULL;
p2->next=NULL;
head=NULL;
return head;
}
while(p1->num!=0)
{
p2=p1;
p1=new book;
cout<<"请输入图书编号,以 0 结束"<<endl;
cin>>str;
while(!check(str))
{
cout<<"输入的不是数字,请重新输入,按 0 返回!"<<endl;
cin>>str;
}
p1->num=atoi(str.c_str());
if(p1->num!=0)
{
cout<<"请输入图书价格"<<endl;
cin>>str;
while(!check(str))
{
cout<<"输入的不是数字,请重新输入,按 0 返回!"<<endl;
cin>>str;
评论0
最新资源