标题:一个小的条件循环,总是在if(word= =8(or13))时出现问题大问题,请大神帮忙 ...
只看楼主
zijian13
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-10-16
 问题点数:0 回复次数:0 
一个小的条件循环,总是在if(word= =8(or13))时出现问题大问题,请大神帮忙!
下面这个小程序为什么总是在if(word= =8(or13))时出现问题
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>

using namespace std;

int main()
{
    string filename, str;
    int word;
    vector<string> svec;
    cout << "输入文件名称" << endl;
    cin >> filename;

    ifstream infile(filename.c_str());
    if (!infile)  return -1;
    while (getline(infile, str))
    {
        svec.push_back(str);
    }
    infile.close();
    istringstream sstream;
    vector<string>::const_iterator ite = svec.begin();
    begin:
    while (ite != svec.end())
    {
        sstream.str(*ite);
        while (sstream >> word)
        {
            if (word = =12)
            {
             ++ite;
             cout << *ite << endl;
             sstream.clear();
             goto begin;
            }
         }
             sstream.clear();
             ++ite;
    }
    system("pause");
    return 0;
}
搜索更多相关主题的帖子: include return 
2017-04-24 09:40



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




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

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