代码搜索:SWITCH

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

代码结果 10,000
www.eeworm.com/read/178127/9417863

jpg switch_on.jpg

www.eeworm.com/read/373369/9459743

java switch.java

//: exceptions/Switch.java import static net.mindview.util.Print.*; public class Switch { private boolean state = false; public boolean read() { return state; } public void on() { state =
www.eeworm.com/read/372762/9494459

c switch.c

# include void main() { int num; /* 下面定义的各变量,分别代表个位,十位,百位,千位,万位,十万位以及位数 */ int indiv, ten, hundred, thousand; int ten_thousand, hundred_thousand, place; printf("请输入一个整数(0~99
www.eeworm.com/read/372507/9507122

cpp switch.cpp

// switch box routing #include #include "stack.h" bool CheckBox(int net[], int n) {// Determine whether the switch box is routable. Stack *s = new Stack (n); /
www.eeworm.com/read/175135/9558616

cpp switch.cpp

// switch.cpp -- use the switch statement #include using namespace std; void showmenu(); // function prototypes void report(); void comfort(); int main() { showmenu(); in
www.eeworm.com/read/366065/9834470

test switch.test

# Commands covered: switch # # This file contains a collection of tests for one or more of the Tcl # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors.
www.eeworm.com/read/366065/9834910

n switch.n

'\" '\" Copyright (c) 1993 The Regents of the University of California. '\" Copyright (c) 1994-1997 Sun Microsystems, Inc. '\" '\" See the file "license.terms" for information on usage and redistribut
www.eeworm.com/read/365949/9838630

cpp switch.cpp

//这个程序在本书所带软盘中,文件名为SWITCH.CPP //这个程序演示开关语句的工作。 #include void main(void) { int choice; cout > choice; switch (choice) { case 1 : { cout
www.eeworm.com/read/169721/9845025

c switch.c

# include void main() { int num; /* 下面定义的各变量,分别代表个位,十位,百位,千位,万位,十万位以及位数 */ int indiv, ten, hundred, thousand; int ten_thousand, hundred_thousand, place; printf("请输入一个整数(0~99
www.eeworm.com/read/365220/9874274

class switch.class