代码搜索:CASE
找到约 10,000 项符合「CASE」的源代码
代码结果 10,000
www.eeworm.com/read/100285/6271939
out case.out
QUERY: CREATE TABLE CASE_TBL (
i integer,
f double precision
);
QUERY: CREATE TABLE CASE2_TBL (
i integer,
j integer
);
QUERY: INSERT INTO CASE_TBL VALUES (1, 10.1);
QUERY: INSERT INTO CASE_TB
www.eeworm.com/read/100285/6272041
sql case.sql
--
-- case.sql
--
-- Test the case statement
--
CREATE TABLE CASE_TBL (
i integer,
f double precision
);
CREATE TABLE CASE2_TBL (
i integer,
j integer
);
INSERT INTO CASE_TBL VALUES (1, 10.
www.eeworm.com/read/486925/6520648
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
www.eeworm.com/read/486925/6520659
java case.java
package com.javapatterns.visitor.parts;
public class Case extends Equipment
{
public double price()
{
return 30.00;
}
}
www.eeworm.com/read/263812/11341147
vbp case.vbp
Type=Exe
Form=Form1.frm
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\System32\STDOLE2.TLB#OLE Automation
IconForm="frmCase"
Startup="frmCase"
Command32=""
Name="Project1"
www.eeworm.com/read/405452/11461909
ico case.ico
www.eeworm.com/read/405452/11462264
bmp case.bmp
www.eeworm.com/read/262261/11595753
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/262261/11595785
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";;