代码搜索:decimal
找到约 6,613 项符合「decimal」的源代码
代码结果 6,613
www.eeworm.com/read/367710/9735855
asm 7.asm
public change5
data segment
binary dw 7fffh,50h
n=($-binary)/2
buf db 7 dup(0)
info1 db 0ah,0dh,'this is the change from hexnumber to decimal:$'
info2 db 0ah,0dh,'the number is:7fffh,50h
www.eeworm.com/read/414105/11130586
asm 7.asm
public change5
data segment
binary dw 7fffh,50h
n=($-binary)/2
buf db 7 dup(0)
info1 db 0ah,0dh,'this is the change from hexnumber to decimal:$'
info2 db 0ah,0dh,'the number is:7fffh,50h
www.eeworm.com/read/148204/12484708
asm 7.asm
public change5
data segment
binary dw 7fffh,50h
n=($-binary)/2
buf db 7 dup(0)
info1 db 0ah,0dh,'this is the change from hexnumber to decimal:$'
info2 db 0ah,0dh,'the number is:7fffh,50h
www.eeworm.com/read/203378/15360306
asm 7.asm
public change5
data segment
binary dw 7fffh,50h
n=($-binary)/2
buf db 7 dup(0)
info1 db 0ah,0dh,'this is the change from hexnumber to decimal:$'
info2 db 0ah,0dh,'the number is:7fffh,50h
www.eeworm.com/read/492648/6417258
asm shiyan.asm
assume cs:code,ss:stack
data segment
d1 db 'Please input 1--6 decimal numbers:',13,10,'$'
n1 db 9 dup('*')
n2 db 9 dup('#')
b1 db 6 dup(0)
b2 db 6 dup(0)
ans db 7 dup(0),'$'
data ends
www.eeworm.com/read/366702/2882272
c pr31385.c
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -O2" } */
typedef _Decimal32 fp_t;
extern fp_t g(fp_t);
fp_t
bug(fp_t x)
{
fp_t result;
int n;
fp_t f, f3, y, z;
n = 0;
y =
www.eeworm.com/read/391210/8416559
html 040_list_style_type_ol.html
CSS示例代码-以decimal,lower-roman,upper-roman,lower-alpha,upper-alpha作为列表项标记的列表示例-网页教程与代码的中文站点-布啦布啦-blabla.cn
www.eeworm.com/read/431844/8649635
vb clssalaryrules.vb
Class ClsSalaryRules
'1 RuleType Int 规则类型,1 -迟到扣款(单位是元/次),2 -差旅补助(单位是元/天),3 -养老代扣系数,4 -基本医疗代扣系数,5 -失业保险代扣系数,6 -住房公积金代扣系数
'1 RuleAmount Decimal (10,2) 对应的金额或系数
Public RuleType As
www.eeworm.com/read/398042/8008380
vb clssalaryrules.vb
Class ClsSalaryRules
'1 RuleType Int 规则类型,1 -迟到扣款(单位是元/次),2 -差旅补助(单位是元/天),3 -养老代扣系数,4 -基本医疗代扣系数,5 -失业保险代扣系数,6 -住房公积金代扣系数
'1 RuleAmount Decimal (10,2) 对应的金额或系数
Public RuleType As
www.eeworm.com/read/332506/12751701
asm a3-1.asm
;A3-1.asm
;将ASCII码十进制数转换为二进制数
STACK1 SEGMENT STACK
DW 256 DUP(?)
STACK1 ENDS
DDATA SEGMENT
MES1 DB 'The ascii code of decimal code are:$'
BUF DB 30H,30H,30H,31H,32H