+ 1
How to make calculator
please tell me who knows
5 Answers
+ 3
See My one code Calculator
+ 3
and Like If You Like My way
+ 3
you need other programming languages
+ 3
Please See My New code Basic Calculator its the easiest way for making a functional calculator
+ 2
here is one simple to calculate sum of no.s
<p>Enter first no.</p><input id=firstno>
<p>Enter other no.</p><input id=othern>
<button onclick="function(){
var firstno=document. getElementById("firstno"),
othern=document.getElementById("othern"),
sum=document.getElementById("sum");
sum.value=firstno.value+othern.value;
}">
Calculate</button>
<p>Sum is <input id=sum></p>
actually it's not possible in only html you need javascript or other