ソースを参照

small fix printing inverse trig results

Allison Ziegler 6 年 前
コミット
9c0206e7db
共有1 個のファイルを変更した6 個の追加1 個の削除を含む
  1. 6
    1
      Console.java

+ 6
- 1
Console.java ファイルの表示

@@ -257,7 +257,12 @@ public class Console {
257 257
     }
258 258
     
259 259
     public void printTrigResult() {
260
-        println("= %s", parse.getFormattedAngle(calc.getDisplayValue()));
260
+        if (!errCheck()) {
261
+            println("= %s", parse.getFormattedAngle(calc.getDisplayValue()));
262
+        }
263
+        else {
264
+            errMessage();
265
+        }
261 266
     }
262 267
     
263 268
     public void printMemory() {