由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - c++ primer求助
相关主题
one C++ question发个题目给大家复习一下marco
amazon的那道题目Why I can't compile this function successfully
Interview questions, BloombergC++: what is the output? How to interpret it?
一个容易记忆的permutation算法C++ Q42: (C22)
好记(但不是最优)的combination算法问个c++题
one C++ questionC++问题
C++ object size一问弱问个C++ 问题 (const_cast)
One C++ question新手问个C++(Thinking in C++ source code)
相关话题的讨论汇总
话题: currword话题: preword话题: 单词话题: c++话题: adjacent
进入JobHunting版参与讨论
1 (共1页)
y*******i
发帖数: 100
1
读入一系列 string 对象,直到同一
个单词连续出现两次,或者所有的单词都已读完,才结束读取
string preword,currword;
while(cin>>currword){
if(preword==currword){
cout<<"the word is: "< break;
}//end if
else preword=currword;
}//end while
if(currword.empty()||(currword!=preword))
cout<<"there are no adjacent words are the same"< 有重复单词测试成功,但是如果输入一系列没重复单词的单词,总是打印不出"there
are no adjacent words are the same",为什么呢?找了半天找不出逻辑错误。
谢谢各位。
g*********s
发帖数: 1782
2
gdb.

【在 y*******i 的大作中提到】
: 读入一系列 string 对象,直到同一
: 个单词连续出现两次,或者所有的单词都已读完,才结束读取
: string preword,currword;
: while(cin>>currword){
: if(preword==currword){
: cout<<"the word is: "<: break;
: }//end if
: else preword=currword;
: }//end while

y*******i
发帖数: 100
3
gdb什么东东
M7
发帖数: 219
4
debugger in unix/linux

【在 y*******i 的大作中提到】
: gdb什么东东
y*******i
发帖数: 100
5
我是菜鸟,我在用dev-C++,怎么debug 法?
n******0
发帖数: 61
6
再读读code 吧。输入一系列没重复单词的单词, 跳不出 while
1 (共1页)
进入JobHunting版参与讨论
相关主题
新手问个C++(Thinking in C++ source code)好记(但不是最优)的combination算法
新手请教:C++ decrement loop (转载)one C++ question
c++ 程序一问C++ object size一问
Amazon的Fibonacci题One C++ question
one C++ question发个题目给大家复习一下marco
amazon的那道题目Why I can't compile this function successfully
Interview questions, BloombergC++: what is the output? How to interpret it?
一个容易记忆的permutation算法C++ Q42: (C22)
相关话题的讨论汇总
话题: currword话题: preword话题: 单词话题: c++话题: adjacent