文件名称:Multiplied-by-large-Numbers
介绍说明--下载内容均来自于网络,请自行研究使用
汇编 大数相乘
include irvine32.inc
value3=value1*value2
.data
str1 byte "请输入16进制的32位整数(乘数)(8个):",0
str2 byte "请输入16进制的32位整数(被乘数)(8个):",0
str3 byte "相乘结果为:",0
value1 dword ? 乘数
value2 dword ? 被乘数
value3 dword 2 dup(0) 结果
m dword 0
用m的值表示两数相乘的情况:0:正*正 1:正*负或负*正 2:负*负-Compilation multiply large numbers the the include irvine32.inc value3 = value1* value2 called data str1 byte " Please enter 16 hex 32-bit integers (multiplier) (8):" , 0 str2 byte hexadecimal 32-bit integers (multiplicand) (8): " , 0 str3 byte multiplying the result:" , 0 value1 dword? multiplier value2 dword? dup Multiplicand value3 dword 2 (0) result m dword 0 expressed multiplying two numbers: 0: n* n-1: positive* negative or negative value of m* n 2: Negative* Negative
include irvine32.inc
value3=value1*value2
.data
str1 byte "请输入16进制的32位整数(乘数)(8个):",0
str2 byte "请输入16进制的32位整数(被乘数)(8个):",0
str3 byte "相乘结果为:",0
value1 dword ? 乘数
value2 dword ? 被乘数
value3 dword 2 dup(0) 结果
m dword 0
用m的值表示两数相乘的情况:0:正*正 1:正*负或负*正 2:负*负-Compilation multiply large numbers the the include irvine32.inc value3 = value1* value2 called data str1 byte " Please enter 16 hex 32-bit integers (multiplier) (8):" , 0 str2 byte hexadecimal 32-bit integers (multiplicand) (8): " , 0 str3 byte multiplying the result:" , 0 value1 dword? multiplier value2 dword? dup Multiplicand value3 dword 2 (0) result m dword 0 expressed multiplying two numbers: 0: n* n-1: positive* negative or negative value of m* n 2: Negative* Negative
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Multiplied by large Numbers\大数相乘.asm
Multiplied by large Numbers