代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/259817/11763251
cmd fft.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/259580/11779991
cpp switchbox.cpp
// switch box routing
#include
#include "arrayStack.h"
using namespace std;
bool checkBox(int net[], int n)
{// Determine whether the switch box is routable.
// net[0..n-1] is
www.eeworm.com/read/156614/11788553
c cmd_cache.c
/*
* (C) Copyright 2000
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you
www.eeworm.com/read/259220/11814428
cpp menu2.cpp
//: C03:Menu2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// A menu using a switch statement
#
www.eeworm.com/read/345470/11814766
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/345462/11815010
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/259160/11817583
txt build.txt
Build from audioclass.dpj using Visual DSP++ 3.5
Make sure to include the compiler switch "-no-bss" under Additional Options in the Compile tab
www.eeworm.com/read/259158/11817650
txt build.txt
Build from msclass.dpj using Visual DSP++ 3.5
Make sure to include the compiler switch "-no-bss" under Additional Options in the Compile tab
www.eeworm.com/read/156094/11828252
m exp2_14.m
clear
clc
close
t=-pi:0.1:pi;
trigname=input('Input trig functions name:')
switch trigname
case 'sin'
plot(t,sin(t))
case 'cos'
plot(t,cos(t))
otherwise
break %终止,跳出switch语句
end
www.eeworm.com/read/258816/11841227
cpp p1-30.cpp
#include
main()
{
//x,y 为操作数,c为运算符
int x,y,z;
char c1;
cin>>x>>c1>>y; //c1
//多路选择语句选择不同表达式计算语句
switch(c1) {
case '+':cout