代码搜索:decimal

找到约 6,613 项符合「decimal」的源代码

代码结果 6,613
www.eeworm.com/read/353416/10449034

txt mediun_value_decimal.txt

100 0 0 5 -12 0 7 8 13 13 -13 0 -11 -19 -13 0 -1 0 0 0 0 0 16 0 0 0 -2
www.eeworm.com/read/462843/7194432

cs decimal_edit.ascx.cs

using System; using System.Data; using System.Configuration; using System.Collections; using System.Collections.Specialized; using System.Linq; using System.Web; using System.Web.Security; us
www.eeworm.com/read/258931/11832072

cpp oct2decimal.cpp

//===================================== // title: 一个@字符矩形 // author: cjj // date: 2007-10-09 /* Description: */ //===================================== #include #include
www.eeworm.com/read/258931/11832081

cpp decimal2octal.cpp

//===================================== // title: 十进制转换为八进制 // author: cjj // date: 2007-10-09 /* Description: 十进制转换位八进制方法:逐次除以8,倒者排余数 */ //===================================== #include
www.eeworm.com/read/214617/4908036

asv decimal2bi.asv

function y=decimal2bi(x,n) x=0.84837 n=8 x_temp=x y(1)=0 for k=2:n y(k)=floor(abs(x_temp)*2) x_temp=abs(x_temp)*2-y(k) end if x
www.eeworm.com/read/214617/4908044

m decimal2bi.m

function y=decimal2bi(x,n) x_temp=x y(1)=0 for k=2:n y(k)=floor(abs(x_temp)*2) x_temp=abs(x_temp)*2-y(k) end if x