8096
Chat with our AI personalities
ASSUME CS: CODE ,DS: DATA
DATA SEGMENT
op1 dw 1000h
op2 dw 2000h
result dw 01 DUP (?)
DATA END
CODE SEGMENT
START:
MOV AX,2000H
MOV DS,AX
MOV AX,op1
MOV BX,op2
clc
ADD AX,BX
MOV DI,OFFSET result
MOV [DI] ,AX
MOV AH,4CH
INT 21H
CODE ENDS
END START
.model small
.STACK 100
.data
.code
START:
MOV CL, 10 ; the counter is in cx
MOV AX, 0 ; use ax as sum holder
MOV BX, 0
BACK:
ADD BX, 2
ADD AX, BX
DEC CL
JNZ BACK
END START
sum = 0; for (int i = 12; i
A total is a variable that accumulates the sum of several numbers. Answer is based on C How to Program (6th Edition)
Write an. Algorthim. To. Find the. Sum. Of. First15 natural. Numbers
int sum (int min, int max) {return (max-min+1)*(max+min)/2;}
Cls input "enter two no.s ",a,b sum=a+b print "sum = ";sum end