代码搜索:case

找到约 10,000 项符合「case」的源代码

代码结果 10,000
www.eeworm.com/read/282822/9058423

val case.val

www.eeworm.com/read/282822/9058619

px case.px

www.eeworm.com/read/282822/9058720

db case.db

www.eeworm.com/read/183260/9173696

sql case.sql

REM case.sql REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman REM This script demonstrates the CASE statement. set serveroutput on DECLARE v_Major students.major%TYPE; v_CourseN
www.eeworm.com/read/378548/9224265

txt case.txt

1、smartdraw绿色版软件,下载地址:http://www.onegreen.net/Soft_Show.asp?SoftID=402 2、viso2007:office组件,比较大,功能也不错,支持UML1.4 3、rationalRose2003:IBM的CASE设计工具,商业工具,需要破解,支持UML1.4 4、truFun2005国产CASE设计工具,支持UML1.4,下载地址
www.eeworm.com/read/180140/9318668

html case.html

www.eeworm.com/read/373729/9441431

doc case工具.doc

www.eeworm.com/read/177608/9444189

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/177608/9444203

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/177608/9444205

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";;