case语句中case的用法
要求:输入5+, 输出100;输入5-,输出90;输入5,输出95。
我的写法如下,输出5的时候必须加一个空格,如何去掉空格呢?请问该如何编写呢?
``` case 5:
switch(b) {
case '+':
printf("The score is 100.\n");
break;
case '-':
printf("The score is 85.\n");
break;
case '0':
printf("The score is 90.\n");
break;
default:
printf("False input.\n");
}
break;
在sql中主要有两种语法
在sql中主要有两种:简单case和搜索case,在plsql中还有两种case 语句,与decode 类似。(有一定的区别)
简单的case:
语法:case exp when comexp then returnvalue
..when comexp then returnvalue
Else
Returnvalue
End
使用规则case简介。