标题:[求助] 帮忙看下这个错误什么意思?
只看楼主
lyle3
Rank: 1
等 级:新手上路
帖 子:80
专家分:0
注 册:2006-5-19
 问题点数:0 回复次数:3 
[求助] 帮忙看下这个错误什么意思?
  1. 我们第一次的作业:我写的代码是这样的:

    作业是要求计算文件中给定的单词的个数
    //: C02:file.txt
    // count the speical word's number in the file
    #include<string>
    #include<fstream>
    #include<iostream>
    using namespace std;

int main()
{
int number=0;
ifstream in ("file.txt");
string word,test;
cout<<"Please enter the word you want to quest:";
cin>>test;
while(getline(in,word," "))
{
if(word==test)
{
number++;
}
}
cout<<"The number of "<<test<<" is:"<<number<<endl;

}///:~


错误信息是这样的 :
--------------------Configuration: 111 - Debug--------------------
Compiling source file(s)...
Find.cpp
D:\课件\c++\test\Find.cpp: In function `int main()':
D:\课件\c++\test\Find.cpp:15: error: no matching function for call to `getline(
std::ifstream&, std::string&, const char[2])'
D:\课件\c++\test\Find.cpp:24:7: warning: no newline at end of file

111.exe - 1 error(s), 1 warning(s)

不知道是什么意思
大家帮忙看下
谢谢~~

搜索更多相关主题的帖子: word number test 
2007-03-31 22:53
lyle3
Rank: 1
等 级:新手上路
帖 子:80
专家分:0
注 册:2006-5-19
得分:0 
帮忙看下。。。
谢谢

我将再给你一次选择的机会............... QQ:514897584
2007-03-31 22:57
RL720
Rank: 1
等 级:新手上路
帖 子:148
专家分:0
注 册:2005-11-6
得分:0 
while(getline(in,word," "))
改成
while(getline(in,word,' '))
即可

2007-03-31 23:52
lyle3
Rank: 1
等 级:新手上路
帖 子:80
专家分:0
注 册:2006-5-19
得分:0 
谢谢

我将再给你一次选择的机会............... QQ:514897584
2007-04-01 13:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-128438-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019665 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved