Updated readme.md

This commit is contained in:
Gatecraft 2017-02-02 12:51:05 +01:00
parent aa38e7ef27
commit daa45c3fbd
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,5 @@
# PICalculator
Scientific calculator in java.
![alt text](https://github.com/XDrake99/PICalculator/blob/master/res/decimal.png "Example expression")
![alt text](https://github.com/XDrake99/PICalculator/blob/master/res/decimal.png "Example expression")
![alt text](https://github.com/XDrake99/PICalculator/blob/master/res/algebra.png "Simplification of an expression")

View File

@ -48,7 +48,8 @@ public class SolveEquationScreen extends Screen {
public boolean keyPressed(Key k) {
switch (k) {
case LETTER_X:
DisplayManager.INSTANCE.goBack();
//TODO: far funzionare questa parte
/*DisplayManager.INSTANCE.goBack();
try {
es.calc.solveExpression('X');
} catch (final Error e) {
@ -61,6 +62,7 @@ public class SolveEquationScreen extends Screen {
e.printStackTrace();
}
}
*/
return true;
default:
return false;