- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下程序在 Mac Mojave (AppleClang 10.0.1.10010046
) 上输出 Error
例如输入 10cm
(注意没有空格在值和字符串输入之间)。相同的输入在 Ubuntu 16.04 (GNU 5.4.0
) 下有效(输出:Working
)。
int main() {
double val {0.0};
string unit {" "};
cout << "Enter a double value followed by a unit (cm , m, in, ft) with or without a space in between (followed by 'Enter'):\n";
if (cin >> val)
{
cout << "Working val" << '\n';
if (cin >> unit)
{
cout << "Working unit" << '\n';
}
else
{
cout << "Error unit" << '\n';
auto f = cin.fail();
auto b = cin.bad();
cout << "f: " << f << ", b: " << b << '\n';
}
}
else
{
cout << "Error val" << '\n';
auto f = cin.fail();
auto b = cin.bad();
cout << "f: " << f << ", b: " << b << '\n';
}
return 0;
}
为什么 cin
在 Mac OS 下会进入错误状态?
这是 Mac OS 下的完整输出:
Enter a double value followed by a unit (cm , m, in, ft) with or without a space in between (followed by 'Enter'):
10cm
Error val
f: 1, b: 0
Process finished with exit code 0
当我输入例如 10 cm
(带空格)时它正在工作:
Enter a double value followed by a unit (cm , m, in, ft) with or without a space in between (followed by 'Enter'):
10 cm
Working val
f: 0, b: 0
Working unit
f: 0, b: 0
Process finished with exit code 0
编辑:上一个(完整)问题:我正在尝试使用 C++ 进行《编程原理与实践》第 4 章的第 7 次练习:
更改循环体,使其每次只读取一个 double。定义两个变量以跟踪您目前看到的最小值和最大值。每次通过循环写出输入的值。如果它是迄今为止最小的,请在数字后面写上迄今为止最小的。如果是迄今为止最大的,则在数字后面写上迄今为止最大的。
为每个输入的双数添加一个单位;即,输入 10cm、2.5in、5ft 或 3.33m 等值。接受四种单位:cm、m、in、ft。假设换算系数 1m == 100cm,1in == 2.54cm,1ft == 12in。将单位指示符读入字符串。您可以将 12 m(数字和单位之间有一个空格)等同于 12m(没有空格)。
#include "std_lib_facilities.h"
bool legalUnit(string unit)
{
if (unit == "cm" || unit == "m" || unit == "in" || unit == "ft")
{
return true;
}
else {
return false;
}
}
int main() {
bool first {true};
double val {0.0};
double smallest {0.0};
double largest {0.0};
string unit {" "};
cout << "Enter a double value followed by a unit (cm , m, in, ft) with or without a space in between (followed by 'Enter'):\n";
while (cin >> val >> unit)
{
if (legalUnit(unit))
{
cout << val << unit << '\n';
if (first == true)
{
first = false;
smallest = val;
largest = val;
}
else if (val < smallest)
{
cout << " the smallest so far.\n";
}
else if (val > largest)
{
cout << " the largest so far.\n";
}
}
}
return 0;
}
该程序在 mac 和 linux 上编译没有问题,输入一个数字后跟空格和一个单位,例如 10 in
工作。
现在我的问题是:在 Mac 上,如果我输入例如 10in
程序会立即退出,因为 cin >> val >> unit
返回错误。在 linux 上,相同的输入起作用,这意味着进入循环。
关于编译器,我需要考虑什么吗?我在 Mac Mojave 10.14.5 和 Ubuntu 16.04 上使用默认设置(自动检测编译器)的 CLion。
有人可以在 mac 上确认输入如 10cm
不起作用吗?
最佳答案
这是一个bug in libc++ (我可能会在 2013 年报告)。
如果输入流中数字后跟一个字母且中间没有空格,则读取此数字可能会失败,也可能不会失败,具体取决于字母。 “坏”字母是 A 到 F、I、N、P 和 X(以及对应的小写字母)。
精明的读者会注意到,这些正是可以组成十六进制常量的字母(是的,P 是其中之一)以及单词 NAN 和 INF。
其他具有相同行为方式的字符包括加号、减号和小数点(原因很明显)。
关于c++ - cin double 和没有空格的字符串导致错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57761343/
我使用 cin.peek() 方法获得了这段代码。我注意到奇怪的行为,当程序输入看起来像 qwertyu$[Enter] 时,一切正常,但是当它看起来像 qwerty[Enter]$ 时,它仅在我键入
#include #include using namespace std; int main(){ ofstream fout("student.dat",ios::out); char name[
我是 C++ 编程新手,遇到了障碍。这是我的代码: #include using namespace std; int main(){ int sum = 0, a; cout >
我有一个简单的程序,当输入完全符合预期时,它名义上可以工作。 #include using namespace std; int main () { int a, b; char a
int main () { int num1, num2; int cnt = 1; if (cin >> num1){ while (cin >> num2){
我有这个程序,但 cin 随机跳过..我的意思是有时它会,有时它不会。有什么解决办法吗? int main(){ /** get course name, number of
我是一名正在准备期末考试的 C++ 初学者。我用两种方式写了一个程序。第一个代码使用 cin.getline() 并且不能正常工作。第二个代码使用 cin.get() 和 cin >> 并正确执行所有
据我所知,在 cin 之后使用 getline() 时,我们需要先刷新缓冲区中的换行符,然后再调用 getline(),我们通过调用 cin.ignore() 来完成此操作。 std::string
我正在尝试以下代码: int main() { char str1[20]; int a; cout > a; cout > 忽略空格(即 ' ', '\t', '\n
我刚开始阅读 C++ 11 入门书,目前在 if 语句部分。我以前有使用 Java 的经验,但 C++ 输入/输出确实让我感到困惑。为了方便起见,我将多个练习放在一个文件中。但是,似乎自从我调用了 w
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: c++ cin input not working? 我一直在尝试使用以下 C++ 代码在整数后输入字符串。
需要 I/O 重定向,我不能使用 fstream。我用 I/O通过使用 ">line)通过 I/O 读取文件重定向。然后我需要 cin>>x ,但这次是在运行时进行用户输入,但会被跳过。 我试过了 c
我正在尝试使用 getline() 但在输入第一个记录光标后不要等待第二个国家/地区名称,它会跳过并跳转到首都名称。我的错误在哪里。如果我输入 国家:印度 首都:德里 Capita:57382 它可以
我有以下循环。它应该读取数字直到 EndOfFile,或者用户输入 -999 int arr[100]; int index; for (index = 0; index > arr[index];
以下两个循环和每个循环什么时候停止有什么区别? #include #include #include using namespace std; int main() { int x,y;
在这个程序的每次输入中,我希望用户能够输入他们想要的任意数量的“单词”(意思是用空格/制表符分隔的文本)......但是不允许用户输入单词超出当前 cin。例如:如果我键入 John Smith Do
int main() { int oddeven = 1; int modulotwo; // Simple loop since no reason to check 0
我写了一个 switch 语句,并创建了一个默认值,它会简单地说用户选择了一个错误的选项并重复输入。我想确保如果出现问题,它会首先清除缓冲区,所以我使用了 cin.sync(),但输入 'a' 仍然会
我是一个新手程序员,正在练习下面的这个程序。无论出于何种原因,在我的程序结束时,cin.ignore() 被编译器完全跳过并直接移动到 cin.get(),但是之前已经有一个按键,所以编译器完全跳过它
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我是一名优秀的程序员,十分优秀!