代码搜索:Switch

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

代码结果 10,000
www.eeworm.com/read/192105/8403697

c f340_usb0_mouse.c

//----------------------------------------------------------------------------- // F340_USB0_Mouse.c //----------------------------------------------------------------------------- // Copyright 200
www.eeworm.com/read/192105/8403723

c f320_usb0_mouse.c

//----------------------------------------------------------------------------- // F320_USB0_Mouse.c //----------------------------------------------------------------------------- // Copyright 200
www.eeworm.com/read/291432/8420835

c al4_7.c

/*案例代码文件名:AL4_7.C。*/ /*功能:已知利润求薪水。*/ main() { long profit; int grade; float salary=500; printf("Input profit: "); scanf("%ld", &profit); grade= (profit – 1) / 1000; /* 将利润-1、再整
www.eeworm.com/read/432780/8574532

hec baidef.hec

/******************************************************************************/ /* SCCS: %Z% Name: %M% Date US: %G% %U% Ver.: %I% */ /***************************************************************
www.eeworm.com/read/187719/8605220

cpp rfd.cpp

/* Microchip ZigBee Stack Demo RFD This demonstration shows how a ZigBee RFD can be set up. This demo allows the PICDEM Z Demostration Board to act as either a "Switching Load
www.eeworm.com/read/387845/8651246

c swlib.c

/* * swlib.c: Switch configuration API (user space part) * * Copyright (C) 2008 Felix Fietkau * * This program is free software; you can redistribute it and/or * modify it unde
www.eeworm.com/read/431224/8694670

m subsasgn.m

function a = subsasgn(a,index,val) switch index(1).type case '.' switch index(1).subs case 'con' if length(index) == 2 a.con(index(2).subs{:}) = val; else a.con = val; e
www.eeworm.com/read/431224/8694810

m subsref.m

function b = subsref(a,index) switch index(1).type case '.' switch index(1).subs case 'con' if length(index) == 2 b = a.con(index(2).subs{:}); else b = a.con; end cas