代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/465016/7064268
cmd led.cmd
-w
-stack 400h
-heap 100
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM
www.eeworm.com/read/465021/7064316
cmd serial.cmd
-w
-stack 400h
-heap 100
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM
www.eeworm.com/read/211216/7081543
cmd dsp.cmd
MEMORY
{
PAGE 0: VECS: origin = 0x0000, length 0x040
PAGE 0: PROG: origin = 0x1000, length 0x7000
PAGE 1: DATA: origin = 0x8000, length 0x8000
}
SECTIONS
{
.ve
www.eeworm.com/read/248089/7101066
java onoffswitch.java
package chapter09;
class Switch
{
private boolean state=false;
boolean getState(){return state;}
void on(){state=true;}
void off(){state=false;}
}
class AnotherEx extends Exception{}
publ
www.eeworm.com/read/161082/7110785
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
% switch (y)
% case 0
% if x==0
% distance=0.0458;
% end
% if x==1
% distance=2;
www.eeworm.com/read/356730/7113419
c lesson5_3.c
#include
#define uint unsigned int
#define uchar unsigned char
sbit dula=P2^6;
sbit wela=P2^7;
sbit key1=P3^4;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6
www.eeworm.com/read/274556/7127213
m e0314.m
n=input('n=')
if n100
disp ('Error')
else
i=fix(n/10);
switch i
case {9,10}
disp('A')
case 8
disp ('B')
case 7
disp('C')
case 6
www.eeworm.com/read/352774/7131590
c lesson5_3.c
#include
#define uint unsigned int
#define uchar unsigned char
sbit dula=P2^6;
sbit wela=P2^7;
sbit key1=P3^4;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6
www.eeworm.com/read/442503/7133739
cmd fir.cmd
-w
-stack 400h
-heap 100
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM
www.eeworm.com/read/332978/7141722
java vowelsandconsonants.java
//: control/VowelsAndConsonants.java
// Demonstrates the switch statement.
import java.util.*;
import static net.mindview.util.Print.*;
public class VowelsAndConsonants {
public static void m