GUVI
Back

private case 2 is error ?

Created 2 years ago
161 Views
3 Comments
AAKASH30
@AAKASH30
AAKASH30
@AAKASH30Profile is locked. Login

const readline = require('readline');

const inp = readline.createInterface({

input: process.stdin});

const userInput = [];

inp.on("line", (data) =>{

userInput.push(data);

});

inp.on("close", () => {

var celcius = userInput[0];

var farhit = celcius * 1.8 + 32;

console.log(farhit);

});

Comments (3)
Please login to comment.
 
Powered by habitate.io Habitate