代码搜索:DA转换

找到约 10,000 项符合「DA转换」的源代码

代码结果 10,000
www.eeworm.com/read/194936/8183629

txt 4.5 bcd码到ascii码转换实例.txt

BCDTOASC MOV R0,#20H MOV R1,#10H MOV R2,#05H ACALL BCDASC LOOP0: SJMP LOOP0 BCDASC: MOV R1,#10H MOV R6,#0AH LOOP1: MOV @R1,#00H INC R1 DJNZ R6,LOOP1 LOOP2:
www.eeworm.com/read/193177/8248731

txt 4.5 bcd码到ascii码转换实例.txt

BCDTOASC MOV R0,#20H MOV R1,#10H MOV R2,#05H ACALL BCDASC LOOP0: SJMP LOOP0 BCDASC: MOV R1,#10H MOV R6,#0AH LOOP1: MOV @R1,#00H INC R1 DJNZ R6,LOOP1 LOOP2:
www.eeworm.com/read/414839/11100425

sql 3.7.4 text与image字段转换处理示例.sql

/*--示例说明: 下面的代码演示了转换pubs数据库的pub_info表中的pr_info列(text类型)为image类型 及将转换结果再转换为text的处理。 --*/ USE pubs --创建一个临时表,用来转换 pub_info.pr_info 列值 CREATE TABLE #t(id int,a image,b text) GO --将 pub_info
www.eeworm.com/read/414392/11114897

sql 3.7.4 text与image字段转换处理示例.sql

/*--示例说明: 下面的代码演示了转换pubs数据库的pub_info表中的pr_info列(text类型)为image类型 及将转换结果再转换为text的处理。 --*/ USE pubs --创建一个临时表,用来转换 pub_info.pr_info 列值 CREATE TABLE #t(id int,a image,b text) GO --将 pub_info
www.eeworm.com/read/413830/11140667

txt 数字转换为大写金额.vbproj.filelist.txt

bin\Debug\数字转换为大写金额.exe bin\Debug\数字转换为大写金额.pdb bin\Debug\数字转换为大写金额.xml bin\Debug\Interop.ACTIVEVOICEPROJECTLib.dll bin\Debug\Interop.haiwasoftNTC.dll bin\Debug\Interop.HTTSLib.dll bin\Debug\AxI
www.eeworm.com/read/411658/11234598

cpp p343 10.7 类类型的转换.cpp

#include #include using namespace std; class Student { public: string name; int num; char sex; float score;