gpt4 book ai didi

c - 使用switch语句是否可以得到 'and'操作

转载 作者:行者123 更新时间:2023-11-30 18:17:40 25 4
gpt4 key购买 nike

据我所知,到目前为止我可以使用 switch语句并将其用作“或”运算符。例如:

switch(num)
case 1:
case 2:
printf("One or Two");

它的工作原理就像

if(num==1 || num==2)
printf(""One or two);

是否可以修改 switch 语句并将其用作 AND 而不是 OR?

最佳答案

一个变量不能同时保存两个值。

num == 1 && num == 2 始终为 false。

这个问题有意义还是我没有捕获重点?

关于c - 使用switch语句是否可以得到 'and'操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14088333/

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