代码搜索:Digit

找到约 4,689 项符合「Digit」的源代码

代码结果 4,689
www.eeworm.com/read/413840/2158764

java integral.java

package parser; import java.util.*; /** * 这个类用于存储一个整数类型 * @author zouhao */ public class Integral extends Token{ ArrayList integral; /** * 构造函数 * @pa
www.eeworm.com/read/393024/2489720

h hal_vti.h

#ifndef VTI_H #define VTI_H /** This is the driver for a Vigilant technologies ENCDAC board. The board includes 4 channels of quadrature encoder input, 4 channels of analog output, 8 on board digit
www.eeworm.com/read/113600/15452472

lst overview.lst

[Provided by Bent Lynggaard . Last Edit 6/5/94] This list is a brief description of each of the 256 interrupts. Each description begins with "INT nn " where "nn" is a two digit
www.eeworm.com/read/111805/15502738

java avoidoverwritingfile.java

// Chapter 9 Exercise 2 // This extends the solution to exercise 1 to append a three digit number to the file name // *** indicates modified or added code import java.io.File; import java.io.F
www.eeworm.com/read/164790/10088089

h charset.h

#ifndef CharSet_H #define CharSet_H #include "CommonData.h" #define SizeOfSpace 5 const XML_Char* digit = JTEXT("0123456789"); const XML_Char* letters = JTEXT("abcdefghijklmnopqrstuvwxyzABC
www.eeworm.com/read/425303/10364520

scm eg.scm

(define (sam n) (let ((digit 0)(temp 0) (mul 1) (full 0)) (let sample ((num n)) (set! temp (quotient num 10)) (set! mul (* mul 10)) (if (= (quotient temp 10) te
www.eeworm.com/read/469123/6977874

m demo_ep_usps.m

% Demo script to illustrate use of binaryEP on a binary digit classification % task. 2006-03-29. if isempty(regexp(path,['gpml' pathsep])) cd ..; w = pwd; addpath([w, '/gpml']); cd gpml-demo % a
www.eeworm.com/read/452695/7436269

c ex10_01.c

/* Exercise 10.1 Reading types of strings from the keyboard */ /* type 1: a sequence of lowercase letters followed by a digit. e.g. number1 type 2: two words that both begin with a capital letter a
www.eeworm.com/read/198623/7921331

y bc.y

%right '=' %left '+' '-' %left '*' '/' '%' %right '^' %left UMINUS %term LETTER DIGIT SQRT _IF FFF EQ %term _WHILE _FOR NE LE GE INCR DECR %term _RETURN _BREAK _DEFINE BASE OBASE SCALE %term EQPL EQ
www.eeworm.com/read/143592/12858380

cpp prg8_2.cpp

// File: prg8_2.cpp // the program initializes a 50-element vector with 5-digit random // integers in the range 0 to 99999 and sorts the vector using the // radix sort. it outputs the numbers in 6