代码搜索:decimal
找到约 6,613 项符合「decimal」的源代码
代码结果 6,613
www.eeworm.com/read/311226/3686828
rq tp-decimal-decimal.rq
# Positive test: product of type promotion within the xsd:decimal type tree.
# $Id: tP-decimal-decimal.rq,v 1.9 2007/09/17 17:40:56 andy_seaborne Exp $
PREFIX t:
www.eeworm.com/read/440773/1792145
rq tp-decimal-decimal.rq
# Positive test: product of type promotion within the xsd:decimal type tree.
# $Id: tP-decimal-decimal.rq,v 1.5 2007/01/15 16:15:10 andy_seaborne Exp $
PREFIX t:
www.eeworm.com/read/311226/3687135
rq typepromotion-decimal-decimal-pass.rq
# Positive test: product of type promotion within the xsd:decimal type tree.
# $Id: typePromotion-decimal-decimal-pass.rq,v 1.9 2007/09/17 17:40:51 andy_seaborne Exp $
PREFIX rdf:
www.eeworm.com/read/311226/3687139
rq typepromotion-decimal-decimal-fail.rq
# Negative test: product of type promotion within the xsd:decimal type tree.
# $Id: typePromotion-decimal-decimal-fail.rq,v 1.9 2007/09/17 17:40:51 andy_seaborne Exp $
PREFIX rdf:
www.eeworm.com/read/440773/1792474
rq typepromotion-decimal-decimal-pass.rq
# Positive test: product of type promotion within the xsd:decimal type tree.
# $Id: typePromotion-decimal-decimal-pass.rq,v 1.5 2007/01/15 16:13:06 andy_seaborne Exp $
PREFIX rdf:
www.eeworm.com/read/440773/1792478
rq typepromotion-decimal-decimal-fail.rq
# Negative test: product of type promotion within the xsd:decimal type tree.
# $Id: typePromotion-decimal-decimal-fail.rq,v 1.5 2007/01/15 16:13:09 andy_seaborne Exp $
PREFIX rdf:
www.eeworm.com/read/120487/6073278
h decimal.h
#ifndef _ECPG_DECIMAL_H
#define _ECPG_DECIMAL_H
#include
typedef decimal dec_t;
#endif /* ndef _ECPG_DECIMAL_H */
www.eeworm.com/read/113030/6142268
h decimal.h
// Chapter 8 of C++ How to Program
// Debugging Problem (decimal.h)
#ifndef DECIMAL_H
#define DECIMAL_H
#include
using std::ostream;
using std::istream;
// class Decimal defi
www.eeworm.com/read/113030/6142269
cpp decimal.cpp
// Chapter 8 of C++ How to Program
// Debugging Problem (decimal.cpp)
#include
using std::cout;
using std::cin;
#include
#include "decimal.h"
// constructor
Decima
www.eeworm.com/read/119472/14829814
cpp decimal.cpp
//《编译原理》试验示例:有限自动机的运行
//
//程序功能:
//利用状态表和有限自动机的运行原理,识别一个输入串是否为一个有效的无符号定点实数。
//
//例:
//输入:1#
//输出:接受
//输入:3.14#
//输出:接受
//输入:3ab#
//输出:不接受
//输入:1.2.3
//输出:不接受
//
//输入数据要求:不能有空格,以'#'结束( ...