Can we make engineering (casio) calculator with web?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can we make engineering (casio) calculator with web??

16th Aug 2018, 8:12 AM
Nikhil Sadaphule
Nikhil Sadaphule - avatar
2 Answers
+ 6
Yes you can. I had made simple calc but you can also make eng calc with web. Wish you good luck👍👍☺️☺️.
16th Aug 2018, 8:36 AM
Meet Mehta
Meet Mehta - avatar
+ 2
Layout - HTML + CSS Functions - Javascript: -> +,-,/,* - no problem -> percent (%) - Math.round((a / b) * 100); -> pi - Math.PI; -> absolute value - Math.abs(x); -> natural logarithm 10 - Math.LN10; -> logarithm - Math.log(x); -> cosinus - Math.cos(x); -> sinus - Math.sin(x); ..... ..... check built-in Math object: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math
16th Aug 2018, 8:54 AM
Dawid
Dawid - avatar