Computer Science, asked by RishikaKandu, 3 months ago

Develop an algorithm To convert American dollar to Nepalese currency,(@ $1 = Rs116.65)

Answers

Answered by officialmib6
0

Answer:

QBASIC

Explanation:

input "Enter amount of USD: ", usd

nepal = usd * 116.65

print "USD to Nepalese: ", nepal

Similar questions