码迷,mamicode.com
首页 >  
搜索关键字:decimal    ( 1358个结果
Oracle 常用函数
主要是对项目中用过的 oracle 函数进行总结,并做出目录,方便后续项目是快速查找,提高效率。 01.Round (数值的四舍五入) 描述:传回一个数值,该数值是按照指定的小数位元数进行四舍五入运算的结果。 SELECT Round(Number,[Decimal_Places])FROM Dua
分类:数据库   时间:2016-02-18 21:24:10    阅读次数:274
c# 值类型与引用类型 值传递与引用传递
值类型与引用类型: 值类型 :1、值类型大小固定、存储在栈上。 2.不能继承,只能实现接口 3.派生自valuetype int double char float byte bool enum struct decimal 引用类型:1、在栈上存储了一个地址实际存储在堆中,大小不固定。 2.数组、
分类:Windows程序   时间:2016-02-16 23:29:55    阅读次数:239
c# 数据类型
数据类型:一:值类型:简单类型: 整型 有符号整型:sbyte,short,int,long 无符号整型:byte,ushort,uint,ulong Unicode字符型:char ieee浮点型:double,float, 高精度小数:decimal 布尔型:bool 两个值;true,fals
分类:Windows程序   时间:2016-02-16 10:02:07    阅读次数:239
H - Ones
Description Given any integer 0 <= n <= 10000 not divisible by 2 or 5, some multiple of n is a number which in decimal notation is a sequence of 1's.
分类:其他好文   时间:2016-02-06 18:22:02    阅读次数:268
Mybatis 中常用的java类型与jdbc类型
JDBC Type Java Type CHAR String VARCHAR String LONGVARCHAR String NUMERIC java.math.BigDecimal DECIMAL java.math.BigDecimal BIT boolean BOOLEAN boolea
分类:数据库   时间:2016-02-05 22:10:56    阅读次数:398
Fraction to Recurring Decimal
? package cn.edu.xidian.sselab.hashtable;import java.util.HashMap;import java.util.Map;/** * * @author zhiyong wang * title: Fraction to Recurring Dec
分类:其他好文   时间:2016-01-30 22:13:23    阅读次数:201
D - Specialized Four-Digit Numbers
Description Find and list all four-digit numbers in decimal notation that have the property that the sum of its four digits equals the sum of its digi
分类:其他好文   时间:2016-01-30 17:52:35    阅读次数:225
1049. Counting Ones/整数中1出现的次数(从1到n整数中1出现的次数)
The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal form of the integers from 1 to N. F...
分类:其他好文   时间:2016-01-25 22:57:11    阅读次数:491
LightOJ - 1140 How Many Zeroes?
DescriptionJimmy writes down the decimal representations of all natural numbers between and including m and n, (m ≤ n). How many zeroes will he write ...
分类:其他好文   时间:2016-01-25 06:31:40    阅读次数:200
BZOJ4404 : [Neerc2015]Binary vs Decimal
对于一个合法的十进制数,它的所有后缀也是合法的。于是按位BFS,保留前导零,每次往前添加一个$0$或者$1$,直到找到第$n$个不含前导零的合法数为止即可。时间复杂度$O(nl)$。#include#define N 400struct Num{ int len,v[N]; Num(){for(.....
分类:其他好文   时间:2016-01-25 01:28:04    阅读次数:308
1358条   上一页 1 ... 85 86 87 88 89 ... 136 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!