代码搜索结果

找到约 10,000 项符合 Input 的代码

main.cpp

#include typedef double (*FUN)(double,double); double fun(FUN* fp,int index,double i,double j) { } double Add(double i,double j) { return i+j; } double Dec(double i,do

seg7_b.pin

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and a

bank.java

package TestBank; import java.util.*; import java.io.*; /** * 实现描述银行的类Bank, * 记录系统中现有哪些储户,(可用数组实现但注意越界), * 定义了生成储户的函数append, * 按照账户删除储户的函数Delete, * 按账号查询储户的函数query,并显示结果。 * @author

reflectfilter.v

module ReflectFilter ( CLK, InputData, OutputData ); input CLK; input [31:0] InputData; output [31:0] OutputData; wire [34:0] AccResult; wire [31:0] ParamResult;

stream.c

/* Demonstrates the equivalence of stream input and output. */ #include int main( void ) { char buffer[256]; /* Input a line, then immediately output it. */ puts(gets(bu

keyboard.pin

-- Copyright (C) 1991-2006 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and a

beep.pin

-- Copyright (C) 1991-2006 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and a

dlog4ch.h

/* ============================================================================ File name: DLOG4CH.H Originator : Advanced Embeeded Control (AEC)

vendingmachine.java

//: enumerated/VendingMachine.java // {Args: VendingMachineInput.txt} package enumerated; import java.util.*; import net.mindview.util.*; import static enumerated.Input.*; import static net.mind