Answer to Question #38082 in AJAX | JavaScript | HTML | PHP for nishtha ahuja
write a program to find the sum,difference and the product of two numbers when a=50,b=45
1
2014-01-09T12:17:25-0500
In PHP the program to find the sum, difference and the product of two numbers will be have next code:
<?php
$a = 50;
$b = 45;
$sum = $a+$b;
$difference = $a-$b;
$product = $a*$b;
?>
In JavaScript:
var a = 50;
var b = 45;
var sum, difference, product;
sum = a+b;
difference = a-b;
product = a*b;
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment