Computer Science, asked by purnimaguragain520, 3 months ago

write a QBASIC program to convert Nepali rupess to Indian rupees ​

Answers

Answered by cuteprincess200012
2

Answer:

refer the attachment...........

Attachments:
Answered by ItzAbhi47
8

Answer:

Hyyy

Explanation:

» Write a program to convert NC (NEPALI currency) into IC (Indian Currency)

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

Similar questions