gpt4 book ai didi

c++ - Windows 10命令提示符下的输出不正确

转载 作者:行者123 更新时间:2023-12-02 10:37:45 25 4
gpt4 key购买 nike

其中C++编译器是 Cygwin ,带有 gcc版本8.3.0

以下代码

#include <iostream>

using namespace std;

int main() {
cin.tie(0);
ios_base::sync_with_stdio(0);

cout << "START" << endl;

int x;
string a, b;
getline(cin, a);
cin >> x; cin.ignore();
getline(cin, b);
cout << a << endl;
cout << b << endl;
cout << x << endl;

cout << "END" << endl;

从Windows 10 命令提示符处命令:
g++ sol.cpp && a.exe < in.txt

并且 in.txt 是一个文件:
Lorem Ipsum
5
Hello World

打印 不正确的输出
START
Lorem Ipsum

5
END


而不是 正确的输出
START
Lorem Ipsum
Hello World
5
END


而在 Cygwin终端(bash)中使用命令执行相同的代码:
g++.exe sol.cpp && ./a.exe < in.txt

打印正确的输出:
START
Lorem Ipsum
Hello World
5
END


这可能是什么问题?

最佳答案

感谢您的答复。答案已解决。正如@Johnny Mopp在上面的评论中指出的那样,Windows仅使用\r\n,即回车分别返回换行,而Unix仅使用\n,因此,在Windows中,一个将需要编写两个cin.ignore()cin.ignore(2, '\n'),而在Unix中,一个cin.ignore()就足够了。

关于c++ - Windows 10命令提示符下的输出不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59505173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com