簡體   English   中英

如何在文本文件中逐行讀取字符串?

[英]how to read line by line string in a text file?

這段代碼只會讀取並計算input.txt文件中的第一個輸入,而忽略輸入文件中的其余輸入。我一直在嘗試解決它,以便它可以讀取所有其余輸入並進行計算。 這是我的代碼,我認為這有問題。

我嘗試了幾種循環方法

int main()
{
  string inputLine;

  ifstream file ("input.txt");// input file to be read
  ofstream file1;
  file1.open("output.txt");


  freopen("output.txt", "w", stdout);// store all the output to this file

  while (std::getline (file, inputLine)) // read the strings in the input file
  {
    if( strncmp( "----", inputLine.c_str(), 4 ) == 0 )
      continue;

    //calculating binary and hexadecimal values
    char *opr = "^+-/%*=,()";
    std::string::iterator end_pos = std::remove(inputLine.begin(), 
    inputLine.end(), ' ');
    inputLine.erase(end_pos, inputLine.end());
    string str=inputLine;
    string str2="";
    int length=str.length();
    char t[length];
    str.copy(t, length);
    t[length] = '\0';
    char* tok;
    char *cop=new char [length];
    str.copy(cop,length);
    char *w = strtok_fixed( t, opr );

    while (w!=NULL)
    {
      string w2=w;
      std::stringstream tr;
      tr << w2;
      w2.clear();
      tr >> w2;
      int x=w2.length();
      int y=x-3;

      string check= w2.substr(0,3);
      string check1=w2.substr(0,x);

      if(check.find("0x") != std::string::npos)
      {
        unsigned int x= strtol(w2.c_str(), NULL, 0);
        std::ostringstream s;
        s << x;
        const std::string ii(s.str());
        str2=str2+ ii;
      }
      else if (check1.find("b")!=std::string::npos)
      {
        w2.pop_back();
        long bin=std::strtol(w2.c_str(),0,2);
        std::ostringstream s2;
        s2<<bin;
        const std::string t2(s2.str());
        //inputLine.replace(inputLine.find(w2),(w2.length()+1),t2);
        str2=str2+t2;
      }
      else
      {
        str2=str2+w2;
      }
      char a =cop[w-t+strlen(w)];
      string s1="";
      s1=s1+a;
      std::stringstream tr1;
      tr1 << s1;
      s1.clear();
      tr1 >> s1;

      str2=str2+s1;
      w = strtok_fixed (NULL, opr);
    }

    //str2 should be taken to the parser for final evaluations
    Parser p(str2);
    double value = p.Evaluate ();
    std::cout<<"----------------------"<<endl;
    std::cout << "Result = " << value << std::endl;

    std::cout<<"----------------------"<<endl;

    return 0;
  }
}

問題就在最后

return 0;
 }

 }

應該

 }
return 0;

 }

您從while循環內部返回,而不是在while循環完成之后返回。

您應該花一些時間正確縮進代碼。 這將幫助您發現這種錯誤。 您還應該學習將代碼分解為較小的功能。 同樣,這將幫助您更好地理解自己的代碼。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM