multiply 2 number and add with 3ed number and divide by 100 and display the result on web page.
<html>
<title>javascript</title>
<head>
<SCRIPT Language = JavaScript>
var A = 50;
var B = 10;
var C = 100;
document.write((A*B) C/100);
</SCRIPT>
</head>
</html>
The result that is displaying is wrong.This is because, there is a problem with the order of precedence .How to solve this problem....Anyone PLZ HELP