.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.data
dividend WORD 0083h
divisor BYTE 2.code
main PROCmov ax,dividendmov bl,divisorcmp bl,0je NoDivideZero ;为零就不进行除div blNoDivideZero:INVOKE ExitProcess,0
main ENDP
END main
9:计算算式 var4 = (var1 + var2)*var3
.386.model flat,stdcall.stack 4096
ExitProcess PROTO,dwExitCode:DWORD.data
var1 DWORD 10
var2 DWORD 20
var3 DWORD 30
var4 DWORD ?.code
main PROC;var4 =(var1 + var2)*var3mov eax,var1add eax,var2mul var3jc tooBig ;判断EAX是否放得下mov var4,eaxjmp next
tooBig:
next:INVOKE ExitProcess,0
main ENDP
END main
c#中textbox属性Here we are demonstrating use of Visible property of TextBox Control. 在这里,我们演示了TextBox Control的Visible属性的使用。 Visible property contains two values 可见属性包含两个值 True: Using this - textbox can be visible on par…
python程序执行时间The execution time of a program is defined as the time spent by the system to execute the task. As we all know any program takes some execution time but we dont know how much. So, dont worry, in this tutorial we will learn it by using the…
string.lengthC#String.Length属性 (C# String.Length property) String.Length property is used to get the total number of characters in the string object (length of the string); it calls with this string and returns the total number of characters. …
从键盘输入一个字符,判断其是不是大写字母,如果是则请输出这个大写字母,如果不是请输出“这不是一个大写字母”的英文信息(要求:能连续输出直到输出“#”结束)。
P155 例4.13
DATA SEGMENT
STR DB 0DH,0…
c语言getc函数C语言中的getc()函数 (getc() function in C) Prototype: 原型: int getc(FILE *filename);Parameters: 参数: FILE *filenameReturn type: int 返回类型: int Use of function: 使用功能: In the file handling…