gpt4 book ai didi

c - 我想用c程序解决这个查询

转载 作者:行者123 更新时间:2023-11-30 21:14:02 24 4
gpt4 key购买 nike

有人可以指导我如何正确地将其放入 if-else 语句中吗?考虑以下 if 语句,其中 doesSignificantWorkmakesBreakthroughnobelPrizeCandidate 都是 bool 变量:

if (doesSignificantWork) {
if (makesBreakthrough)
nobelPrizeCandidate = true;
else
nobelPrizeCandidate = false;
}
else if (!doesSignificantWork)
nobelPrizeCandidate = false;

首先,编写一个与此等效的更简单的 if 语句。然后编写一个执行相同操作的赋值语句。

最佳答案

if (doesSignificantWork) {
if (makesBreakthrough)
nobelPrizeCandidate = true;
else
nobelPrizeCandidate = false;
}
else if (!doesSignificantWork)
nobelPrizeCandidate = false

相当于

nobelPrizeCandidate = (doesSignificantWork && makesBreakthrough);

关于c - 我想用c程序解决这个查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52762319/

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