代码搜索结果
找到约 10,000 项符合
Switch 的代码
switch.c
# include
void main()
{
int num;
/* 下面定义的各变量,分别代表个位,十位,百位,千位,万位,十万位以及位数 */
int indiv, ten, hundred, thousand;
int ten_thousand, hundred_thousand, place;
printf("请输入一个整数(0~99
switch.h
#if !defined(AFX_SWITCH_H__0660F0D5_10DF_4750_A1B2_8BD35D4F9A62__INCLUDED_)
#define AFX_SWITCH_H__0660F0D5_10DF_4750_A1B2_8BD35D4F9A62__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_
switch.cpp
// Switch.cpp : implementation file
//
#include "stdafx.h"
#include "dsACD_IVR.h"
#include "Switch.h"
#include "dsACD_IVRDoc.h"
#include "dsACD_IVRView.h"
#ifdef _DEBUG
#define new DEBUG
switch.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity switch is
Port ( vgadd : in std_logic_vector(14 downto 0);
conva
switch.java
//: c10:Switch.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
public class Switch {
boolean state = false;
boolean read
switch.h
#define NU_SEM_EN 1
#define NU_QUEUE_EN 1
#define NU_MAILBOX_EN 1
#define NU_PIPE_EN 1
#define NU_EVENT_GROUP_EN 1
#define NU
switch.java
package com.javapatterns.command.lightandfan;
public class Switch {
private Command UpCommand, DownCommand;
public Switch( Command Up, Command Down) {
UpCommand =