代码搜索:CASE
找到约 10,000 项符合「CASE」的源代码
代码结果 10,000
www.eeworm.com/read/449455/7504946
bmp case.bmp
www.eeworm.com/read/449455/7505080
bmp case.bmp
www.eeworm.com/read/441363/7671385
tg case.tg
title automatic transmission tail casing
sd 1 cy [1.15*cos(22.5)] [1.15*sin(22.5)] 0 0 0 1 .05
cylinder
-1 3;
1 -13 25 -37 49;
1 -6 -11 -16 -21 26;
1 1.2
www.eeworm.com/read/399963/7819129
case3
#!/bin/sh
echo "Is it morning? Please answer yes or no"
read timeofday
case "$timeofday" in
yes | y | Yes | YES )
echo "Good Morning"
echo "Up bright and early this mornin
www.eeworm.com/read/399963/7819137
case2
#!/bin/sh
echo "Is it morning? Please answer yes or no"
read timeofday
case "$timeofday" in
yes | y | Yes | YES ) echo "Good Morning";;
n* | N* ) echo "Good Afternoon";;
www.eeworm.com/read/399963/7819140
case1
#!/bin/sh
echo "Is it morning? Please answer yes or no"
read timeofday
case "$timeofday" in
"yes") echo "Good Morning";;
"no" ) echo "Good Afternoon";;
"y" ) echo "Good Morning";;
www.eeworm.com/read/329270/12965745
gif case.gif
www.eeworm.com/read/323119/13351486
result case.result
drop table if exists t1;
select CASE "b" when "a" then 1 when "b" then 2 END;
CASE "b" when "a" then 1 when "b" then 2 END
2
select CASE "c" when "a" then 1 when "b" then 2 END;
CASE "c" when "a" then
www.eeworm.com/read/323119/13353345
test case.test
#
# Testing of CASE
#
--disable_warnings
drop table if exists t1;
--enable_warnings
select CASE "b" when "a" then 1 when "b" then 2 END;
select CASE "c" when "a" then 1 when "b" then 2 END;
select C
www.eeworm.com/read/313005/13599118
java case.java
package com.javapatterns.visitor.inventory;
public class Case extends Equipment
{
public double price()
{
return 30.00;
}
public void accept(Visitor v)
{
Sy