gpt4 book ai didi

c++ - C++ 中的语句

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:55:46 26 4
gpt4 key购买 nike

在C++中想写这样的东西

int Answer;
if (Answer == 1 || Answer == 8 || Answer == 10)

等等,有什么方法可以让代码更短而不总是重复变量吗?

最佳答案

尝试:

 switch (Answer) {
case 1: // fall through
case 8: // fall through
case 10:
// ... do something
break; // Only need if there are other case statements.
// Leaving to help in mainenance.
}

关于c++ - C++ 中的语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5007571/

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