瀏覽代碼

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() {