Using Assembly Language Please Write Instructions Following Prompt User Input Id Id Databa Q37107905

using Assembly LanguagePlease write instructions that do the following:
Prompt the user to input his/her idIf the id in the database, find the salary of theemployeeDisplay the current salaryDisplay the increased salary by 10% (using shift isoptional)If the id doesn’t exist, prompt the user to re-enter his/herid.Prompt the user and lock the program for 5 minutes after 3trials if the id doesn’t match.
using microsoft visual studio


Solution


func crt(id)

IF id in db

GET sal

PRINT sal

Print sal*0.90

GET id

FOR i in range (3)

IF id not in db

PRINT “locked for 5 mins”

ELSE

return crt

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.