+ 4
Can I create a calculator That show the calculation differently.
Example : - 2+2 = 5 2*2 = 8 Or different calculation
2 Respuestas
+ 2
I don't about c++ ,html or c but in python you can overload the operators using magic method like __add__ and internally print some other calculation which when used as + on two numbers will yield different result
+ 4
You can overload this operators and code them as you want