代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/326278/13152072
cmd test17.cmd
-c
-h
-mtest17.map
-otest17.out
test17.OBJ
-lrts.lib
-stack 0x100
MEMORY
{
PAGE 0: PROG: origin = 1a00h, length = 2600h
PAGE 1: DATA: origin = 0200h, length = 1800h
}
www.eeworm.com/read/241345/13153954
c algo3-3.c
/* algo3-3.c 括号匹配的检验,(限于()、[]) */
typedef char SElemType;
#include"c1.h"
#include"c3-1.h"
#include"bo3-1.c"
void check()
{ /* 对于输入的任意一个字符串,检验括号是否配对 */
SqStack s;
SElemType ch[80
www.eeworm.com/read/326161/13160630
c input.c
#include
unsigned char code tab[4][4]={{'1','4','7','#'},
{'2','5','8','0'},
{'3','6','9','*'},
{'A','B','C','D'}}; //
www.eeworm.com/read/325882/13177700
m chap10_1plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
figure(3);
www.eeworm.com/read/240956/13185647
cpp 3_5.cpp
#include
void main()
{
int a;
cout a;
int c1 = a%3 ==0;
int c2 = a%5 ==0;
int c3 = a%7 ==0;
switch((c1
www.eeworm.com/read/139112/13187952
c testpower.c
#include "usbdriver.h"
NTSTATUS TestPowerIrp(IN PDEVICE_OBJECT fdo,IN PIRP Irp)
{
NTSTATUS ntStatus;
PIO_STACK_LOCATION IrpStack, NextStack;
PDEVICE_EXTENSION pdx;
pdx = fdo->Devic
www.eeworm.com/read/325683/13191131
properties keywords.properties
#*******************************
#*****keywords.properties*******
#*******************************
break=2
case=3
char=4
continue=5
do=6
double=7
else=8
float=9
for=10
goto=11
if=12
int=
www.eeworm.com/read/240662/13208198
c 9-3.c
#include
#include
main() {
int pid;
pid = fork();
switch(pid) {
case -1:
perror("fork failed");
exit(1);
case 0:
execl("/bin/ls","ls","-l"
www.eeworm.com/read/240527/13215381
bak dialog.c.bak
#include "..\gui.h"
USER_PRO MyDialog(HAND hd,MESSAGE msg)
{
if(msg.type == GM_SYSTEM)
switch(msg.message)
{
case GM_Create:
CreateObject(hd,BUTTON,1,1,"Hello!",10,10,100,100,NULL,NULL);
r
www.eeworm.com/read/240527/13215389
c dialog.c
#include "..\gui.h"
USER_PRO MyDialog(HAND hd,MESSAGE msg)
{
if(msg.type == GM_SYSTEM)
switch(msg.message)
{
case GM_Create:
CreateObject(hd,BUTTON,1,1,"Hello!",10,10,100,100,NULL,NULL);
r