gpt4 book ai didi

java - If/Else 逻辑流程

转载 作者:行者123 更新时间:2023-11-30 03:32:45 26 4
gpt4 key购买 nike

如果我有类似的东西:

if (n % 10 == 8 && (n/10) % 10 == 8) count = count + 2;
else if (n % 10 == 8) count++;

基本上,如果条件 ab 成立,则执行某些操作。如果只有条件 a 成立,则执行其他操作。最好的逻辑流程是什么?

最佳答案

// check the condition a
if (n % 10 == 8)
{
// check the condition b
if ((n/10) % 10 == 8))
{
count = count + 2;
}
// only condition a took place
else
{
count++;
}
}

关于java - If/Else 逻辑流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28643614/

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