gpt4 book ai didi

c - 如何将if转换为c中的switch-case

转载 作者:行者123 更新时间:2023-12-01 13:59:38 25 4
gpt4 key购买 nike

if(a > b)
{printf("%d is greater than %d", a, b);}
else if( a < b )
{printf("%d is greater than %d", b, a);}
else
{printf("%d is equal to %d", a, b);}

如何在 C 语言中将 if 语句转换为 switch-case?我正在尝试,但我不知道这个问题的答案

最佳答案

switch 语句用于根据一组有限的可能值测试输入表达式。

您正在尝试比较两个变量。这不是 switch 的用例。

您的 if/else if 链没问题。

关于c - 如何将if转换为c中的switch-case,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55298690/

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