代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/168845/5432952
cpp escape_char_parser_tests.cpp
/*=============================================================================
Copyright (c) 2001-2003 Daniel Nuffer
Copyright (c) 2001-2003 Hartmut Kaiser
http://spirit.sourceforge.ne
www.eeworm.com/read/147864/12513479
h y.tab.h
typedef union
#ifdef __cplusplus
YYSTYPE
#endif
{
int ival;
double dval;
char sval[80];
unsigned long chval;
int opval;
} YYSTYPE;
extern YYSTYPE yylval;
# define _begin 257
# define
www.eeworm.com/read/182333/9207340
txt 关于商场使用ic卡的说明.txt
表hv_cardrecord说明
主键
c_ncardno numeric(10) 卡号(key)
c_nxlh numeric(6) 流水号 (key)
c_cxfsj char(16) 消费时间 格式“2000-12-31 18:20”
c_noper char(10) 收银员
c_nje numeric(15,2) 金额 消
www.eeworm.com/read/120688/14792484
txt 关于商场使用ic卡的说明.txt
表hv_cardrecord说明
主键
c_ncardno numeric(10) 卡号(key)
c_nxlh numeric(6) 流水号 (key)
c_cxfsj char(16) 消费时间 格式“2000-12-31 18:20”
c_noper char(10) 收银员
c_nje numeric(15,2) 金额 消
www.eeworm.com/read/233522/4667768
h vcl_limits.h
#ifndef vcl_generic_limits_h_
#define vcl_generic_limits_h_
// THIS IS A GENERATED FILE. DO NOT EDIT! -- Instead, edit vcl_limits.hhh and run make
// numeric_limits
#ifndef vcl_numeric_limits
www.eeworm.com/read/273525/4210033
mata qrd.mata
*! version 1.0.1 06jan2005
version 9.0
mata:
void qrd(numeric matrix A, Q, R)
{
numeric rowvector tau
real scalar c_a, r_a
scalar zero
Q = A
r_a = rows(A)
c_a = co
www.eeworm.com/read/358262/2988215
sql goodsinfo.sql
CREATE TABLE "GOODSINFO"
(
"GOODSID" VARCHAR2 (10),
"FLOWERID" VARCHAR2 (10),
"RETAILPRICE" NUMERIC (10,2),
"COSTPRICE" NUMERIC (10,2),
"SUPID" VARCHAR2 (10),
"ATTR" VARCHAR2 (100)
)
;
www.eeworm.com/read/351636/3101925
h vcl_limits.h
#ifndef vcl_generic_limits_h_
#define vcl_generic_limits_h_
// THIS IS A GENERATED FILE. DO NOT EDIT! -- Instead, edit vcl_limits.hhh and run make
// numeric_limits
#ifndef vcl_numeric_limits
www.eeworm.com/read/378186/9243204
f reduction.f
Subroutine reduction( title, me, npes, nrpt, ncases, n, tn,
& ops )
! ----------------------------------------------------------------------
Use numeric
www.eeworm.com/read/166055/10038085
java sortgrades.java
//********************************************************************
// SortGrades.java Author: Lewis/Loftus
//
// Driver for testing a numeric selection sort.
//************************