Total members 11890 |It is currently Wed Apr 24, 2024 12:51 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Code:


<?php
     
function subtract($n1, $n2) {
          return
$n1 - $n2;
     }
   
     function
add($n1, $n2) {
          return
$n1 + $n2;
     }
   
     function
divide($n1, $n2) {
          if(
$n2 == 0)
               return -
1;
          else
               return
$n1 / $n2;
     }
   
     function
multiply($n1, $n2)
     {
          return
$n1 * $n2;
     }
   
     function
to_pow($n1, $pow)
     {
          if(
$pow)
               return
$n1 * to_pow($n1, $pow - 1);
          return
1;
     }
     print(
to_pow(6, 1) . "<br />");
     print(
multiply(5, 10) . "<br />");
     print(
divide(5, 10) . "<br />");
     print(
subtract(10, 50) . "<br />");
     print(
add(10, 5) . "<br />");
?>
</body>
</html>




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Math Function Library
 Online Math Tutor     -  
 Math GMAT GRE SAT Tutor Available     -  
 GMAT, GRE, SAT, Math Tutor     -  
 Image I/O library     -  
 Library Sort     -  
 PHP SOAP server returns array using NuSOAP Library     -  
 Java Library Database Management System Project     -  
 PHP SOAP server returns array using NuSOAP Library     -  
 simple Ajax library solving back button and bookmarks     -  
 php function     -  



Topic Tags

PHP Functions






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com