大佬们好,小白想问下能不能用 switch 比较两个数的大小 #include <stdio.h> int main(void) { int a,b; printf("please input two number:\n"); scanf("%d %d",&a,&b); switch() case a<b: printf("a<b\n"); break; case a>b: printf("a>b\n"); break; case a=b: printf("a=b\n"); break; }
我不知道 switch 里面的表达式该写什么,还是说我其他地方有问题,还请大佬们帮我指出来,谢谢!
1
nethard 2018-07-21 22:16:30 +08:00 via iPhone
switch(a>b)
case true case false |
2
chengyiqun 2018-07-22 14:49:29 +08:00
1 楼说得很明白了,switch 里放变量,case 是变量的值。
|