为什么 cout 没有输出字符串
Why there is no output from cout for the string
同学批改作业(OpenClassroom)的时候遇到了这个奇怪的问题
从字典文件中读取的字符串(1列300000行单词太大,放在这里不过给你个思路
...
ABAISSAIS
ABAISSAIT
ABAISSAMES
ABAISSANT
...
)
with getline
没有出现在输出中(第 70 行)
actual | shuffledmysteryWord | userInput
expected mysteryWord | shuffledmysteryWord | userInput
我试过重组字符串
for (int i=0; i<(motMystere.size()-1); i++) motMystere1 += motMystere[i];
它按预期工作,因此它不是空的它完全可读可能包含换行符(因为 getline)字符串
还有很多其他的东西can/might需要更正但是
- 这不是我的代码
- 我只是对字符串感到好奇
代码
#include <iostream>
#include <string>
#include <ctime>
#include <cstdlib>
#include <fstream>
using namespace std;
string melangerLettres(string mot)
{
string melange;
int position(0);
int wordSize=mot.size();
while ( wordSize > 1 )
{
if ( wordSize > 2 ) { position = rand() % (wordSize-1); }
else if ( wordSize == 2 ) { position = 0; }
melange += mot[position];
mot.erase(position, 1);
wordSize--;
}
return melange;
}
int main(void)
{
int compteur(0);
string motMystere, motMelange, motUtilisateur, motMystere1, ligne;
srand(time(0));
ifstream dico("dico.txt");
if (dico)
{
while (getline(dico, ligne))
{
++compteur;
}
dico.clear();
dico.seekg(0, ios::beg);
int nrandom = rand() % compteur;
for (unsigned int i = 0; i < nrandom; ++i)
{
getline(dico, ligne);
}
motMystere = ligne;
}
else
{
cout << "Erreur : lecture du fichier impossible\n";
return 1;
}
motMelange = melangerLettres(motMystere);
// dont know why but motMystere is just broken
//~ for (int i=0; i<(motMystere.size()-1); i++) motMystere1 +=
//~ motMystere[i];
cin >> motUtilisateur;
cout << motMystere << " | " << motMelange << " | " << motUtilisateur
<< "\n";
return 0;
}
文本字典文件似乎有 Windows 格式的换行符(CR/LF 对),而您 运行 所在的系统只需要一个换行符 (LF)。当您读入一个单词时,CR (\r
) 字符是单词中的最后一个字符。当您使用 cout
输出它时,此 CR 将输出插入符号移至行首,随后的输出将覆盖该单词。
您可以使用调试器进行检查,检查其中一个单词的长度,and/or 在 motMystere
之后的 cout
中添加一个 \n
字符.
解决方法是在读入单词后检查单词的最后一个字符,如果是 CR 字符则将其删除。 (您可以将 getline
更改为在看到 \r
时停止,但是您必须跳过下一个换行符。)
同学批改作业(OpenClassroom)的时候遇到了这个奇怪的问题
从字典文件中读取的字符串(1列300000行单词太大,放在这里不过给你个思路
...
ABAISSAIS
ABAISSAIT
ABAISSAMES
ABAISSANT
...
)
with getline
没有出现在输出中(第 70 行)
actual | shuffledmysteryWord | userInput
expected mysteryWord | shuffledmysteryWord | userInput
我试过重组字符串
for (int i=0; i<(motMystere.size()-1); i++) motMystere1 += motMystere[i];
它按预期工作,因此它不是空的它完全可读可能包含换行符(因为 getline)字符串
还有很多其他的东西can/might需要更正但是
- 这不是我的代码
- 我只是对字符串感到好奇
代码
#include <iostream>
#include <string>
#include <ctime>
#include <cstdlib>
#include <fstream>
using namespace std;
string melangerLettres(string mot)
{
string melange;
int position(0);
int wordSize=mot.size();
while ( wordSize > 1 )
{
if ( wordSize > 2 ) { position = rand() % (wordSize-1); }
else if ( wordSize == 2 ) { position = 0; }
melange += mot[position];
mot.erase(position, 1);
wordSize--;
}
return melange;
}
int main(void)
{
int compteur(0);
string motMystere, motMelange, motUtilisateur, motMystere1, ligne;
srand(time(0));
ifstream dico("dico.txt");
if (dico)
{
while (getline(dico, ligne))
{
++compteur;
}
dico.clear();
dico.seekg(0, ios::beg);
int nrandom = rand() % compteur;
for (unsigned int i = 0; i < nrandom; ++i)
{
getline(dico, ligne);
}
motMystere = ligne;
}
else
{
cout << "Erreur : lecture du fichier impossible\n";
return 1;
}
motMelange = melangerLettres(motMystere);
// dont know why but motMystere is just broken
//~ for (int i=0; i<(motMystere.size()-1); i++) motMystere1 +=
//~ motMystere[i];
cin >> motUtilisateur;
cout << motMystere << " | " << motMelange << " | " << motUtilisateur
<< "\n";
return 0;
}
文本字典文件似乎有 Windows 格式的换行符(CR/LF 对),而您 运行 所在的系统只需要一个换行符 (LF)。当您读入一个单词时,CR (\r
) 字符是单词中的最后一个字符。当您使用 cout
输出它时,此 CR 将输出插入符号移至行首,随后的输出将覆盖该单词。
您可以使用调试器进行检查,检查其中一个单词的长度,and/or 在 motMystere
之后的 cout
中添加一个 \n
字符.
解决方法是在读入单词后检查单词的最后一个字符,如果是 CR 字符则将其删除。 (您可以将 getline
更改为在看到 \r
时停止,但是您必须跳过下一个换行符。)