代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/417441/10989961
cpp chazhao.cpp
#include"student.h"
void student::chazhao()
{
char k;
int j=1;
do
{
cout
www.eeworm.com/read/417373/10992532
cpp daima.cpp
#include "daima.h"
void CDaima::Gen(enum fct x,int y,int z)
{
if (cx
www.eeworm.com/read/417363/10992713
txt student_grade.txt
根据输入的学生的成绩判断等级。当成绩score ≥90时为 A等; 成绩80≤score
www.eeworm.com/read/417350/10993571
txt 10-10.txt
%例10-10 switch - case - otherwise - end分支语句的使用。
function lower1(method)
switch method
case {'linear','bilinear'}
disp('Method is linear')
case 'cubic'
www.eeworm.com/read/271450/10994292
cpp menu2.cpp
//: C03:Menu2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// A menu using a switch stateme
www.eeworm.com/read/417000/11007583
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/416579/11020488
c gpio.c
/*
\\\|///
\\ - - //
( @ @ )
+---------------------oOOo-(_)-oOOo-------------------------+
| 智林STM32开
www.eeworm.com/read/270891/11023463
cpp main.cpp
#include
#include"8_1.h"
using namespace std;
void main()
{
int f;
Time t1;
cout
www.eeworm.com/read/302309/11029102
c linmin.c
#include
#include
#include
void playA();
void playB();
void playD();
char ch;
char state='A';
void main()
{
int j;
int i=0;
char str[100];
printf
www.eeworm.com/read/416401/11030991
cpp 5.6.cpp
#include
void main()
{
int s;
cin>>s;
s=s/10;
switch(s)
{
case 10:
case 9:cout