代码搜索:case
找到约 10,000 项符合「case」的源代码
代码结果 10,000
www.eeworm.com/read/229812/4751807
for case.for
CHARACTER CH
READ *, CH
SELECT CASE ( CH )
CASE( 'a' : 'z' )
IF( CH .EQ. 'c' )EXIT
PRINT *, 'Lower case letter'
CASE( 'A' : 'Z' )
PRINT *, 'Upper case let
www.eeworm.com/read/390106/8483720
htm case.htm
Setting Case Sensitivity in a Regular Expression (Java Developers Almanac Example)
www.eeworm.com/read/188426/8541258
m case.m
function [baseMVA, bus, gen, branch, area, gencost] = case
%CASE Defines the power flow data in a format similar to PTI.
% [baseMVA, bus, gen, branch, area, gencost] = case
% The format for
www.eeworm.com/read/288524/8627150
m case.m
function [baseMVA, bus, gen, branch, area, gencost] = case(p,q,c,t,k)
%%----- Power Flow Data -----%%
%% system MVA base
baseMVA = 100.0000;
%% bus data
bus = [
1 3 0.0
www.eeworm.com/read/285490/8835913
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/285490/8835929
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/285490/8835934
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/283196/9036605
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/283196/9036620
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/283196/9036624
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";;