- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试创建一个 boolean 标志,当输入无效的输入代码时,它会输出一条错误消息。这是一个类作业,我刚刚学习 C,所以请原谅格式,如果可以改进请通知我。如果输入或输出变量不正确,我的代码会成功执行所有操作,但会输出错误消息。我相信这是代码的 boolean 检查部分的错误。诊断会很好。
此代码将:
参数:
提前致谢。
# include <stdio.h>
int main() {
char $ = $;
char Y = Y;
char E = E;
char in_currency, out_currency;
char flag = 1;
char new_line;
float in_value;
float out_value;
//Calculation variables
printf("Enter the source currency: ");
scanf("%c%c", &in_currency, &new_line);
printf("Enter the destination currency: ");
scanf("%c%c", &out_currency, &new_line);
if ( ( in_currency || out_currency ) != ( '$' || 'Y' || 'E' ) )
flag = 0;
printf("Enter the value: ");
scanf("%f%c", &in_value, &new_line);
//Calculations
if (flag) {
printf("%c%.2f = %c%.2f \n", in_currency, in_value, out_currency, out_value);
}
else {
printf("There was an error with the input. \n");
}
return 0;
}
最佳答案
感谢@JonathanLeffler 的精彩评论。
我相信这可能是由于您的 if 语句的逻辑顺序所致
if ( ( in_currency || out_currency ) != ( '$' || 'Y' || 'E' ) )
flag = 0;
你打算做的如下
if (
(in_currency == '$' || in_currency == 'Y' || in_currency == 'E')
||
( out_currency == '$' || out_currency == 'Y' || out_currency == 'E')
) flag = 0;
这是由于您的原始线路的评估方式所致。 ( in_currency || out_currency )
注意 C++ standard (第 6.8.4.1 节)指出
the substatement is executed if the expression compares unequal to 0.
和打字一样 ( in_currency != 0 || out_currency =! 0)请注意,测试单个值将始终针对非零值进行测试,有时被视为“真实”值。
简而言之,if 语句的第一部分将始终返回 true,因为两个测试(非零字符值)都等于 true。
可以将其视为(在中不为零 或在中不为零),因为两个值都不为零,两个测试等同变为真,成为 (true OR true) - 显然这反过来也是真的。
if 语句的后半部分略有不同
( '$' || 'Y' || 'E' )
这也将等同于 ( true OR true Or True ),因此始终等同于 true 例如:
( '$' != 0 || 'Y' != 0 || 'E' != 0)
最后,这分解为您的代码阅读:
if ((in_currency != 0 || out_currency =! 0) != ( '$' != 0 || 'Y' != 0 || 'E' != 0))
if ((true || true) != ( true || true || true))
if ((true) != (true))
显然,这将总是等同于 false,因为 true 永远不会不等于 true(除非一些通用常量发生变化 ;-)
结果是你的标志总是假的。 - 始终
我给你的替换它的行,而是分别测试每个可能的案例场景并比较结果。
你可以这样理解
if
in_currency **is equal to** '$' *or*
in_currency **is equal to** 'Y' *or*
in_currency **is equal to** 'E'
or
out_currency **is equal to** '$' *or*
out_currency **is equal to** 'Y' *or*
out_currency **is equal to** 'E'
then flag = 0;
[编辑]
用户 Turboc 在下面回答说您可能希望在这两个语句之间使用 &&(and)而不是 or。(请原谅我将此信息放在这里,但是我还不能对答案发表评论)
这取决于您打算如何评估您的声明 - 如果您希望标志等于 false (0),如果货币是上述任何一种,则对于输出或输入,则情况并非如此)。
但是,如果您希望声明在货币是上述之一时为真,您可以使用以下内容
if
in_currency **is equal to** '$' *or*
in_currency **is equal to** 'Y' *or*
in_currency **is equal to** 'E'
and
out_currency **is equal to** '$' *or*
out_currency **is equal to** 'Y' *or*
out_currency **is equal to** 'E'
then flag = 1;
但是,如果是这种情况,您可能希望决定哪种答案对您的问题更有效。
关于c - 使用 boolean 标志检测输入错误,C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24718806/
我有两个维度 DimFlag 和 DimPNL 以及一个事实表 FactAmount 。我正在寻找:当 pnl 是 stat(Is Stat=1) 时:sum (Actual x FlagId)对于
我试图弄清楚登录模块标志在 JAAS 中是如何工作的(使用 JBoss 5.1 EAP),我遇到了一个令人费解的情况,我希望有人能为我澄清一下。 对于背景,我的 login-config.xml 如下
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我正在通过 gradle 使用 doclet 运行 javadoc,当我运行 javadoc/doclet 任务时,我收到下一个错误: error - invalid flag: -doctitle
我尝试使用sqoop --where标志将特定的行从MySQL表导入到HDFS,但是结果不符合预期。 命令: sqoop import \ --connect "jdbc:mysql://XXXX
我有一个语言面板,其中有一个图像 (main-image),显示页面加载时的情况。我还有三个额外的图像,它们在页面加载时隐藏。 问题是当点击附加图像之一时如何切换主图像。我需要使用单击的 image
奇怪...在 StackOverflow 上有很多关于此 attr 的问题,但没有人回答我的以下问题: 我有一个span(仅作为示例),其中启用了ContentEditable。我只想保存更改的元素(
我正在使用 ChartJS 2.0 在 UI 上绘制图表。而且我能够呈现饼图。但我希望鼠标悬停时显示数据以及“%”符号。我如何追加 % 因此,如果在鼠标悬停时我得到 Rented: 93 我想看到 R
我使用的是 Servlet 3.0,我想用 HttpOnly 标志保护我的 cookie。我的 web.xml 是 true
我有一个简单的服务: public class TestService extends Service { final String LOG_TAG = "myLogs"; public void o
我正在尝试将 wget 与包含“#”符号的 url 一起使用。无论我做什么来逃避这个角色,它都不起作用。我用过\、' 和 "。但它们都不起作用。有人有什么建议吗? 谢谢! 最佳答案 如果您真的想让它有
我正在尝试创建一个数据库,但我不知道如何转义数据库名称中的 - 符号。 mysql> create database happy-face; 给我一个错误 mysql> create databa
我为我的计算机科学类(class)编写了一个程序,它读取一个文件并导入数据,然后只添加数字,但它似乎添加了一个额外的加号。 import java.io.*; //necessary for File
可能是个愚蠢的问题,但我怎样才能在与某些文本看到图像相同的行中获取图像(在本例中为标志)? 到目前为止我的 HTML 代码: FRA 最佳答案 试试这个: img { height:20px
我需要一些有关 clone() 系统调用的帮助。我试图将它与标志 CLONE_CHILD_CLEARTID 一起使用,但我看不到我指定为参数的字段值有任何变化。这是一个简单的代码: int the_c
查看 mySQL 转储时,我遇到了一些东西,想知道它们是什么。 我明白了: /*!50001 DROP TABLE IF EXISTS `xxx` */; flag 50001是什么意思,有什么意思的
是否可以传递任何 Java 编译器标志来告诉编译器不允许使用原始类型?也就是说,对于任何泛型类,让编译器强制使用参数化版本,否则抛出编译错误? 最佳答案 JDK7 (b38) 介绍 -Xlint:ra
[Flags] public enum MyEnum { None = 0, Setting1 = (1 GetAllEnums() where T : struct
我正在浏览 PackageManager API。我发现定义了以下常量: 1) GET_DISABLED_COMPONENTS 2) GET_DISABLED_UNTIL_USED_COMPONENT
我编写了一个 Go 程序来模拟按键操作。为此,我必须使用 cgo 和不同的 C 代码片段,具体取决于正在编译 Go 代码的操作系统。我编写的代码如下所示: package keyboard /* #i
我是一名优秀的程序员,十分优秀!