搜索结果
找到约 4 项符合
CRLF 的查询结果
按分类筛选
Java编程 CRLF Output Stream
CRLF Output Stream
CA认证 * * Input * bin_data : binary data * bin_size : binary data length * Mode : operation mode
*
* Input
* bin_data : binary data
* bin_size : binary data length
* Mode : operation mode
* BASE64_NeedCRLF ---- Need a CRLF every 64 base64-character
* BASE64_NotCRLF ---- Need not CRLF between 64 base64-character
*
* Output
* char data
* char data length
*
* Return
* 0: success -1: e ...
汇编语言 .data val1 sword 0 val sword -276 .code main proc mov ax,val cwd mov bx,10 idiv bx
.data
val1 sword 0
val sword -276
.code
main proc
mov ax,val
cwd
mov bx,10
idiv bx
mov val1,ax
call writebin
call crlf
mov ax,dx
call writebin
exit
main endp
end main
文章/文档 输入、输出功能
输入、输出功能,检验输入的数是否为数字功能,ASCII码与二进制数的的相互转化功能,两数相乘功能,因此整个程序定义了两个宏INPUT和MULTIPLE,宏INPUT实现了输入、检验和ASCII码与二进制的相互转换功能,MULTIPLE实现了两数相乘功能,实现输出功能的是子程序OUTPUT,由于在输入的过程中多次用到了回车换行,因此定义了一个 ...