+ 4
How to solve a factorisation equation in java
3 Respostas
+ 3
You can create a code that checks if an equation is factorisable by using b² - 4ac formula... If you want to factorise the input itself, it requires a hell lot of coding... Go through this code to get an idea...
https://code.sololearn.com/ca4K1D1oiYoO/?ref=app
+ 4
Yes bro thank you very much
+ 1
TheLegendaryPramoda
You can simply use Shridharacharya formula and print the result roots in the form of (x-r1)(x-r2)= 0.
To print step by step, even I don't know.
To print answers to higher degree use binomial formula.