设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1516|回复: 3
打印 上一主题 下一主题

[求助]这个cin哪里错了

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 02:47:04 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
程序有点长,,编译无错误,主要是在红色字处要进行cin输入时,
#include <iostream>
#include <set>
#include <vector>
#include <string>
using namespace std;
void readBook()
{
vector<string> bookVec;
set<string> readSet;
readSet.insert("ThinkinginC++");
readSet.insert("C++program");
string bookName;
cout<<"电脑前的这位大狭,请输入您在未来六个月想读的书"<<endl;
while(cin>>bookName)
{
if(!readSet.count(bookName))
{
bookVec.push_back(bookName);
readSet.insert(bookName);
}
else
cout<<"这本书您已经读过了"<<endl;
}
cout<<"六个月后......"<<endl;
vector<string>::iterator iter = bookVec.begin();
while(iter != bookVec.end())
{
cout<<*iter<<" "<<"这本书您读了吗,如果读了请输入Y,如果没有请输入N :";
char ch;
cin>>ch;
if(ch == 'N')
readSet.erase(*iter);
else
;
iter++;
}
cout<<"经过您的确认,您这六个月读的书有"<<bookVec.size()<<"本,分别是:"<<endl;
set<string>::const_iterator set_it = readSet.begin();
while(set_it != readSet.end())
{
cout<<*set_it<<endl;
set_it++;
}
cout<<"您没有读的书有:"<<endl;
iter = bookVec.begin();
while(iter != bookVec.end())
{
if(!readSet.count(*iter))
cout<<*iter;
else
;
iter++;
}
cout<<"程序操作完毕"<<endl;
}
int main()
{
readBook();
system("pause");
return 0;
}
不知道怎么写注释
2#
发表于 2009-11-3 02:47:06 | 只看该作者
问输入什么能够使while(cin>>bookName)中的逻辑值为false?
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 02:47:06 | 只看该作者
ctrl+Z
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 02:47:07 | 只看该作者
ctrl+z
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 06:50 , Processed in 0.104533 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表