35.
Write a program to
convert NC (NEPALI currency) into IC (Indian Currency) using DECLARE SUB.
DECLARE SUB CONVERT (NC)
CLS
INPUT “ENTER VALUE IN NEPALESE RUPEES”; NC
CALL CONVERT (NC)
END
SUB CONVERT (NC)
IC = NC / 1.6
PRINT “INDIAN CURRENCY VALUE=”; IC
END SUB
useless
ReplyDeleteLike u
DeleteThanks brotha!
ReplyDeleteGoodd
ReplyDeleteCan u do WIthout Diclare Sub
ReplyDeleteNice but I wanted to covert Nepali rupees into Indian but I used it at example btw thanks so much
ReplyDelete