0
Corrency convert
function main() {ļ»æ var amount = parseFloat(readLine(), 10);ļ»æ var rate = parseFloat(readLine(), 10);ļ»æ ļ»æ console.log(convert(amount, rate));ļ»æ }
2 Answers
+ 3
You need to define your function.
function convert() {
// implement your logic here
}
0
I got the answer