vishalgujratilike यदि आप फोन पे से अपने *मोबाइल / टीवी* को रिचार्ज करते हैं तो आपको *₹3 प्लेटफार्म फीस* के देने होते हैं, और यदि आप हमसे रिचार्ज करवाने के लिए पैसे फोन पे करते हैं, Airtel , Jio, vi - Vodafone Idea etc. तो आप 100 - 199 ka ₹10 तक की छूट 199 - 299 ka ₹15 तक की छूट 299 - 400 ka ₹20 तक की छूट 400 - 500 ka ₹25 तक की छूट 500 - 600 ka ₹30 तक की छूट 600 - 700 ka ₹35 तक की छूट 700 - 800 ka ₹40 तक की छूट 800 - 900 ka ₹ 45 तक की छूट 900 - 1000 ka ₹50 तक की छूट 1000 से अधिक का रिचार्ज कराने पर ₹80 से ₹200 तक की छूट पाए (पहले फोन पे , गूगल पे , पेटीएम पे पर पैसे डाले फिर ही रिचार्ज किया जाएगा ) तो अब से अपना मोबाइल रिचार्ज करवाना हो तो हमें व्हाट्सएप पर 9644314507 Vishal Maliya संपर्क करें व 10 से 200 रूपये की छूट पाए 😊✅✅ Airtel recharge plan ETC. Jio recharg...
<html>
Calculator
<head>
<script>
//function that display value
function dis(val)
{
document.getElementById("result").value+=val
}
//function that evaluates the digit and return result
function solve()
{
let x = document.getElementById("result").value
let y = eval(x)
document.getElementById("result").value = y
}
//function that clear the display
function clr()
{
document.getElementById("result").value = ""
}
</script>
<!-- for styling -->
<style>
.title{
margin-bottom: 10px;
text-align:center;
width: 210px;
color:green;
border: solid black 2px;
}
input[type="button"]
{
background-color:green;
color: black;
border: solid black 2px;
width:100%
}
input[type="text"]
{
background-color:white;
border: solid black 2px;
width:100%
}
</style>
</head>
<!-- create table -->
<body>
<div align="center">
<div class = title >Calculator</div>
<table border="1">
<tr>
<td colspan="3"><input type="text" id="result"/></td>
<!-- clr() function will call clr to clear all value -->
<td><input type="button" value="c" onclick="clr()"/> </td>
</tr>
<tr>
<!-- create button and assign value to each button -->
<!-- dis("1") will call function dis to display value -->
<td><input type="button" value="1" onclick="dis('1')"/> </td>
<td><input type="button" value="2" onclick="dis('2')"/> </td>
<td><input type="button" value="3" onclick="dis('3')"/> </td>
<td><input type="button" value="/" onclick="dis('/')"/> </td>
</tr>
<tr>
<td><input type="button" value="4" onclick="dis('4')"/> </td>
<td><input type="button" value="5" onclick="dis('5')"/> </td>
<td><input type="button" value="6" onclick="dis('6')"/> </td>
<td><input type="button" value="-" onclick="dis('-')"/> </td>
</tr>
<tr>
<td><input type="button" value="7" onclick="dis('7')"/> </td>
<td><input type="button" value="8" onclick="dis('8')"/> </td>
<td><input type="button" value="9" onclick="dis('9')"/> </td>
<td><input type="button" value="+" onclick="dis('+')"/> </td>
</tr>
<tr>
<td><input type="button" value="." onclick="dis('.')"/> </td>
<td><input type="button" value="0" onclick="dis('0')"/> </td>
<!-- solve function call function solve to evaluate value -->
<td><input type="button" value="=" onclick="solve()"/> </td>
<td><input type="button" value="*" onclick="dis('*')"/> </td>
</tr>
</table>
</div>
</body>
</html>
Comments
Post a Comment