Showing posts with label maximum of two numbers in javascript. Show all posts
Showing posts with label maximum of two numbers in javascript. Show all posts

Thursday, November 12, 2015

Maximum of Two Numbers in JavaScript

In this article I will share with you a simple program that I wrote in JavaScript that will check and determine which of the two numbers given by our user is the highest or bigger it only uses if - else statement in comparing which of the two number is much bigger.  I intended my work for beginners in JavaScript programming.

If you  have some questions please send me an email at jake.r.pomperada@gmail.com and jakerpomperada@yahoo.com. My mobile number here in the Philippines is 09173084360.


Sample Program Output

Program Listing

<html>
 <head>
    <title>
 Maximum Between Two Numbers
 </title>
 </head>
 <style>
        h3 {
    font-family:arial;
    }
</style>  
 <body>
  <h3> Maximum Between Two Numbers </h3>
<script>
  var first_number = Number(prompt("Enter First Number : "));
  var second_number = Number(prompt("Enter Second Number : "));

   if(first_number > second_number)
        {
            document.write("<font face='arial' size='4'> ");
document.write("The " +first_number+
" is much bigger than " + second_number + ".</font>");
        }
        else if (second_number > first_number)
        {
            document.write("<font face='arial' size='4'> ");
document.write("The number " + second_number+ 
" is much bigger than " + first_number + ".</font>");
        }
   </script> 
  </body>
 </html>