-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.ts
98 lines (82 loc) · 2.13 KB
/
app.ts
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#! /usr/bin/env node
import inquirer from "inquirer";
import chalk from "chalk";
import chalkanimation from "chalk-animation";
const stop = () => {
return new Promise((res) => {
setTimeout(res, 1000);
})
};
async function wellcome() {
let rainbow_title = chalkanimation.rainbow("Lets, Start Calculation"); // start
await stop();
rainbow_title.stop(); // stop after 1sc
}
console.log(`
_____________________
| _________________ |
| | JO 0. | |
| |_________________| |
| ___ ___ ___ ___ |
| | 7 | 8 | 9 | | + | |
| |___|___|___| |___| |
| | 4 | 5 | 6 | | - | |
| |___|___|___| |___| |
| | 1 | 2 | 3 | | x | |
| |___|___|___| |___| |
| | . | 0 | = | | / | |
| |___|___|___| |___| |
|_____________________|`);
// call function
await wellcome();
async function Ask_question() {
const answers = await inquirer
.prompt([
/* Pass your questions in here */
{
type: "list",
name: "operator",
message: "Which operation you want to perform? \n ",
choices: ["Addition", "Subbtraction", "Multiplication", "Division"]
},
{
type: "number",
name: "num1",
message: chalk.bgGreen("Enter yor 1st number:")
},
{
type: "number",
name: "num2",
message: chalk.bgBlueBright("Enter your 2nd number:")
}
]);
if
(answers.operator == "Addition") {
console.log(`${answers.num1} + ${answers.num2} = ${answers.num1 + answers.num2} `)
}
else if
(answers.operator == "Subbtraction") {
console.log(`${answers.num1} - ${answers.num2} = ${answers.num1 - answers.num2} `)
}
else if
(answers.operator == "Division") {
console.log(`${answers.num1} / ${answers.num2} = ${answers.num1 / answers.num2}`)
}
else if
(answers.operator == "Multiplication") {
console.log(`${answers.num1} * ${answers.num2} = ${answers.num1 * answers.num2}`)
}
}
//Ask_question();//
async function againStart() {
do {
await Ask_question();
var again = await inquirer
.prompt({
type: "input",
name: "restart",
message: "Do you want to continue? press y or n"
})
} while (again.restart == "y" || again.restart == "Y" || again.restart == "yes" || again.restart == "YES")
}
againStart();