代码搜索:Num
找到约 10,000 项符合「Num」的源代码
代码结果 10,000
www.eeworm.com/read/249008/12527327
gif ed_list_num.gif
www.eeworm.com/read/147186/12578796
m num2strcell.m
www.eeworm.com/read/147186/12579087
m cell2num.m
www.eeworm.com/read/146615/12633485
prg num2txt.prg
para df
dfdx1=num2txt(df)
FUNC num2txt
para lnDollar
priv x1,x2,x3,x4,c1,c2,c3,zf
zf=""
do case
case lnDollar>999999999999.99
retu "金额太大,不能计算"
case lnDollar=0
retu "零圆整"
case lnDo
www.eeworm.com/read/236993/13984419
gif ed_list_num.gif
www.eeworm.com/read/235612/14060316
m num2strmat.m
function smat=num2strmat(vec)
% NUM2STRMAT: convert a vector of numbers to a string matrix
%
% smat = num2strmat(vec)
%
% Converts a vector of numbers to a string matrix
%
% NOTE: It is illegal
www.eeworm.com/read/235612/14061183
m num2strmat.m
function smat=num2strmat(vec)
% smat = num2strmat(vec)
%
% Converts a vector of numbers to a string matrix
%
% NOTE: It is illegal for you to use this software for a purpose other
% than non-profit e
www.eeworm.com/read/235020/14088662
lst num2string.lst
C51 COMPILER V7.20 NUM2STRING 05/08/2005 10:52:21 PAGE 1
C51 COMPILER V7.20, COMPILATION OF MODULE NUM2STRING
OBJECT MODULE PLACED
www.eeworm.com/read/235020/14088664
obj num2string.obj
www.eeworm.com/read/235020/14088672
c num2string.c
extern unsigned char s[];
void num2string(unsigned char number)
{
s[0]=number / 100+48;
number = number % 100;
s[1]=number / 10+48;
s[2]=number % 10+48;
s[3]='\0';
}