Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~8K People Reached
Favorite Forums
Member Avatar for Rooro

Hello everyone : ) i'm working on : [quote]Write a program that takes an input sentence from the user and on next line display the number of capitals letters in the sentence. Note: ยท User is not allowed to enter a sentence with more than 9 Capital letters. [/quote] what …

Member Avatar for Ebru
0
7K
Member Avatar for Monther_1

.STACK 100H .DATA .CODE MAIN PROC MOV AX,@DATA MOV DS,AX ;DISPLAY MSG1 LEA DX,MSG1 MOV AH, 09H ;DISPLAY STRING INT 21H ;DISPLAY MSG1 ; start of loop mov bX,0 loop_top: MOV AH,1 INT 21h cmp al,0dh je Display1 ; testletters cmp al,'A' JL loop_end CMP al,'z' JG loop_end INC bx …

Member Avatar for Dean_5
0
198