質問編集履歴
1
エラーの表示を足した
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
2
|
print(4/3*3.14*6378*6376*6378)
|
3
3
|
これを計算するとエラーが出ます。
|
4
|
+
The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
|
5
|
+
デバックエリアにはこのエラーが出ます
|
6
|
+
error: MyPlayground.playground:4:1: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
|
7
|
+
print(4/3*3.14*6378*6378*6378)
|
8
|
+
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
4
9
|
なぜでしょうか?
|
5
10
|
|
6
11
|
ここに質問の内容を詳しく書いてください。
|