码迷,mamicode.com
首页 >  
搜索关键字:decimal    ( 1358个结果
HDU 4734 F(x)(数位DP)
Description For a decimal number x with n digits (A nA n-1A n-2 ... A 2A 1), we define its weight as F(x) = A n * 2 n-1 + A n-1 * 2 n-2 + ... + A 2 * 2 + A1 * 1. Now you are given two numbers A a...
分类:其他好文   时间:2015-03-30 23:16:06    阅读次数:357
Leetcode: Fraction to Recurring Decimal
题目: Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating, enclose the repeating part in parentheses.For...
分类:其他好文   时间:2015-03-29 16:36:10    阅读次数:144
POJ1426——BFS——Find The Multiple
DescriptionGiven a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only the digits 0 a...
分类:其他好文   时间:2015-03-21 21:14:06    阅读次数:141
[LeetCode]Fraction to Recurring Decimal
题目描述: Fraction to Recurring Decimal Given two integers representing the numerator and denominator of a fraction, return the fraction in string format....
分类:其他好文   时间:2015-03-19 19:49:21    阅读次数:178
数字格式化
C或c Currency 货币格式 D或d Decimal 十进制格式(十进制整数,不要和.Net的Decimal数据类型混淆了) E或e Exponent 指数格式 F或f Fixed point 固定精度格式 G或g General 常用格式 N或n 用逗号分割千位的数字,比如1234将会被变成...
分类:其他好文   时间:2015-03-19 11:28:13    阅读次数:106
A1010. Radix (25)
Given a pair of positive integers, for example, 6 and 110, can this equation 6 = 110 be true? The answer is "yes", if 6 is a decimal number and 110 is...
分类:其他好文   时间:2015-03-17 12:04:33    阅读次数:177
A program to print Fahrenheit-Celsius table with floating-point values
Go to my personal blog Another program to print Fahrenheit-Celsius table with decimal integer This program is presented as below. #include /* print Fahrenheit_Celsius table for fah...
分类:其他好文   时间:2015-03-16 19:22:36    阅读次数:159
字符类型转换
1.(int)变量名[强制类型转换]该转换方式主要用于数字类型之间的转换,从int类型向long,float,double,decimal 类型转换可以使用隐式转换,但从long型到int 就需要使用显示转换,即使用该类型的转换方式否则产生编译错误。 该方式对于浮点数会无条件的舍去,会失去精确度 ....
分类:其他好文   时间:2015-03-16 16:16:34    阅读次数:128
微信扫码支付asp.net(C#)实现步骤
支付提交页面: [HttpPost] public ActionResult index(decimal amount) { //生成订单10位序列号,此处用时间和随机数生成,商户根据自己调整,保证唯一 strin...
分类:微信   时间:2015-03-15 16:45:49    阅读次数:785
TColor 与 RGB 的转换函数
function RGB2TColor(const R, G, B: Byte): Integer;begin // convert hexa-decimal values to RGB Result := R + G shl 8 + B shl 16;end;procedure TColor2RG...
分类:其他好文   时间:2015-03-14 18:23:11    阅读次数:135
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!