代码搜索:Digit

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

代码结果 4,689
www.eeworm.com/read/479166/6700056

cpp fig19_18.cpp

// Fig. 19.18: fig19_18.cpp // Using functions isdigit, isalpha, isalnum and isxdigit. #include using std::cout; using std::endl; #include // character-handling function pro
www.eeworm.com/read/346698/11732473

c fet440_lcd_03.c

//***************************************************************************** // MSP-FET430P440 Demo - LCD, Displays Numbers on a 4-Mux LCD // // Description: This program displays digits store
www.eeworm.com/read/342347/12027009

cpp toj_2857.cpp

/*2857. Digit Sorting Time Limit: 1.0 Seconds Memory Limit: 65536K Total Runs: 369 Accepted Runs: 253 Several players play a game. Each player chooses a certain number, writes it down (in deci
www.eeworm.com/read/127767/14337650

txt e311. formatting a number using a custom format.txt

A pattern of special characters is used to specify the format of the number. This example demonstrates some of the characters. For a complete listing, see the javadoc documentation for the DecimalForm
www.eeworm.com/read/222207/14701158

c calc.c

/****************************************************************************** ************ LABCENTER ELECTRONICS ************ ************
www.eeworm.com/read/221205/14753654

look1

#!/bin/ksh #@(#) 查询字典中的字段含义、 if [[ $# != 2 ]] then echo 用法: look1 中文或英文 交易终端类型 如 TT,ST exit 1 fi name=$1 if [[ `expr "$1" : '[a-zA-Z0-9_.]*' ` = ${#1} ]] then name=`echo $1 | tr "[:upper:]"
www.eeworm.com/read/221205/14753659

look

#!/bin/ksh #@(#) 查询字典中的字段含义、 if [[ ${#1} = 0 ]] then echo 用法: look 中文或英文 [数据字典类型] exit 1 fi if [[ $# = 2 ]] then look1 $1 $2 exit fi name=$1 if [[ `expr "$1" : '[a-zA-Z0-9_.]*' ` = ${#1} ]]
www.eeworm.com/read/221205/14753675

seek

#!/bin/ksh #@(#) 查询字典中的字段含义(完全匹配) if [[ ${#1} = 0 ]] then echo 用法: seek 中文或英文 exit 1 fi name=$1 if [[ `expr "$1" : '[a-zA-Z0-9_.]*' ` = ${#1} ]] then name=`echo $1 | tr "[:upper:]" "[:lower
www.eeworm.com/read/221205/14753681

a

#!/bin/ksh #@(#) 查询字典中的字段含义(完全匹配) function seek { if [[ ${#1} = 0 ]] then echo 用法: seek 中文或英文 exit 1 fi name=$1 if [[ `expr "$1" : '[a-zA-Z0-9_.]*' ` = ${#1} ]] then name=`echo $1 | tr "[:
www.eeworm.com/read/116207/14982856

h calc.tab.h

#define DIGIT 257 #define LETTER 258 #define UMINUS 259