-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
39 lines (38 loc) · 1016 Bytes
/
index.ts
File metadata and controls
39 lines (38 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#! /usr/bin/env node
import inquirer from "inquirer"
console.log("Calculator Start");
const calc = await inquirer.prompt([
{
message : "Enter First Number to perform operation",
type : "number",
name : "firstNumber"
},
{
message : "Enter Second Number to perform operation",
type : "number",
name : "secondNumber"
},
{
message : "Select your operator",
type : "list",
name : "operator",
choices : ["Addition","Subtraction","Division","Multiplication"]
}
]
)
if (calc.operator==="Addition"){
console.log(calc.firstNumber+calc.secondNumber)
}
else if (calc.operator==="Subtraction"){
console.log(calc.firstNumber-calc.secondNumber)
}
else if (calc.operator==="Multiplication"){
console.log(calc.firstNumber*calc.secondNumber)
}
else if (calc.operator==="Division"){
console.log(calc.firstNumber/calc.secondNumber)
}
else {
console.log("Invalid operator found!")
}
console.log("Calculator End")