-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperator-user-input-3.html
75 lines (48 loc) · 1.33 KB
/
operator-user-input-3.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
// Operators program in JavaScript value Enter the User.
let first_value = prompt("Enter the value of 1st Number");
let Second_value = prompt("Enter the value of 2nd Number");
let choice;
let sum , sub , mul , divide , modulus;
choice = prompt("Press 1 for Add Press 2 for Sub Press 3 for Mul Press 4 for Divide and Press 5 for Modulus ");
// { use when multiple statement are given}
if(choice==1)
{
sum = first_value + Second_value;
console.log(" Value is = " , sum);
}
else if(choice==2)
{
sub = first_value - Second_value;
console.log(" Value is = " , sub);
}
else if(choice==3)
{
mul = first_value * Second_value;
console.log(" Value is = " , mul);
}
else if(choice==4)
{
divide = first_value / Second_value;
console.log(" Value is = " , divide);
}
else if(choice==5)
{
modulus = first_value % Second_value;
console.log(" Value is = " , modulus);
}
else{
console.log("YOu EnTer WRonG InPuT TrY AgAIn");
}
</script>
</body>
</html>