代码搜索结果
找到约 21,386 项符合
Switch 的代码
switch.inc
;***
; SWITCH.INC - 01-Oct-87 - BASCOM compiler and runtime common switch file
;***
.XLIST
;***
;
; Copyright 1987, Microsoft Corporation
;
;Purpose:
;
;********************************
version.inc
;version.inc
include switch.inc
RELEASE = ON
INCLUDE interp.inc
version.h
/* version.h */
#define VERSION_H
#include "switch.h" /* set up switch default values */
#define EM_MATH ON
#include "interp.h"
filename.inc
;filename.inc - This file defines all the _ASM switch names.
;it is ONLY included by switch.inc. No make file contains dependencies on
;filename.inc, because any change that would affect one of the
match.c
#include "..\h\tools.h"
#include
flagType fMatch (pat, text)
char *pat, *text;
{
switch (*pat) {
case '\0':
return (flagType) (*text == '\0');
case '?':
retur
mainmenu.tpl
{lang_sitemenu}
{sitemenu}
{lang_othermenu}
{othermenu}
sitemgr_header.tpl
{menulist}
|
mainmenu.tpl
{lang_sitemenu}
{sitemenu}
{lang_othermenu}
{othermenu}
{displ
ex_3_2_8.java
/*
*文件名 ex_3_2_8.java
*说 明:模拟菜单程序
* switch语句使用举例
*/
import java.io.*; // 导入java.io包
class ex_3_2_8
{
public static void main(String args[])
throws IOException // 抛出异常 IOExcepti
ex_3_2_6.java
/*
*文件名 ex_3_2_6.java
*说 明:演示多路分支语句switch的用法
* 学生成绩评价的生成
*/
class ex_3_2_6
{
public static void main(String args[])
{
int score=80; // 成绩
String remark; // 成绩评价
switch(sc