質問編集履歴

1

例の追加

2016/06/13 12:39

投稿

torano
torano

スコア92

test CHANGED
File without changes
test CHANGED
@@ -2,4 +2,18 @@
2
2
 
3
3
 
4
4
 
5
+ 例えば以下のコードでは
6
+
7
+ ```python3
8
+
9
+ input = list(map(int,input().split()))
10
+
11
+ print((input[0]*input[1] + input[1]*input[2] + input[2]*input[0]) * 2)
12
+
13
+ ```
14
+
15
+ 1行目、2行目両方ともundefined variable:関数名と出てしまいます。
16
+
17
+
18
+
5
19
  実行やデバッグをしても問題はないのですが、どういうことでしょう?