Thursday, 25 April 2013
leap and minor
<html>
<head>
</head>
<body>
<H1 align="center">Check for the Person is He/ She minor? </h1>
<button onclick="minor()">Check for Minor</button>
<button onclick="leap()">Check for Leap year</button>
<script type="text/javascript">
<!--
function minor()
{
var name = prompt("Please enter your name"," ")
var age = prompt("Please enter your age"," ")
if(age < 18 )
alert(name + " is MINOR");
else
alert(name + " is NOT MINOR");
}
function leap()
{
var year = prompt("Please enter year to chech is Leap year or not"," ")
var temp = year % 4
if(temp == 0 )
alert(year + " is LEAP");
else
alert(year + " is NOT LEAP");
}
-->
</script>
</body>
</html>
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment