代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/233852/14131157
cmd usecmd.cmd
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM PAGE 0
.data : {}> PRAM PAGE 0
.ci
www.eeworm.com/read/233850/14131199
m subsasgn.m
function f = subsasgn(f,index,val)
% SUBSASGN Define index assignment for frogc objects
L=length(f); % for a single object
if L==1
fc = fieldcount(f.frogp);
switch index.type
www.eeworm.com/read/233850/14131211
m subsasgn.m
function p = subsasgn(p,index,val)
% SUBSASGN Define index assignment for agent objects
switch index.type
case '()'
switch index.subs{:}
case 1
p.ID = val;
case 2
p
www.eeworm.com/read/233848/14131283
cmd ad.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/233737/14141848
c main.c
//----------------------------------------------------------------------------
// C main line
// Project to measure sensitivity on each switch
// Output 3 switches timer data counts to LCD
//-----
www.eeworm.com/read/233105/14169152
c 汉诺塔.c
这是个汉诺塔程序,在调试的时候,输入的数字最好不要大于15,因为每大一个数
所得的结果的步骤都会多一倍。如果你有耐心等待结果的话除外。汉诺塔是在欧洲
流行的一种游戏,有a,b,c三个竿。a竿上有若干个由大到小的圆盘,大的在下面,
小的在上面,b,c都是空杆,请你把a杆上的圆盘都倒到别的杆上,或b或c,在倒盘
的过程中不可以大的压小的,实例程序如下:
#include ...
www.eeworm.com/read/130490/14190197
c document.c
/* Copyright (C) 2002 Mikael Ylikoski
* See the accompanying file "README" for the full copyright notice */
/**
* @file
* Structured document interface.
*
* @author Mikael Ylikoski
* @date
www.eeworm.com/read/232288/14199876
cfg modify.cfg
-$A+
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J+
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;Dbi
www.eeworm.com/read/130200/14203695
cpp func3-2.cpp
// func3-2.cpp algo3-6.cpp和algo3-7.cpp要调用的函数
char Precede(SElemType t1,SElemType t2)
{ // 根据教科书表3.1,判断t1,t2两符号的优先关系('#'用'\n'代替)
char f;
switch(t2)
{
case '+':
case '-':if(
www.eeworm.com/read/130114/14208052
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