回答編集履歴

1

d

2018/10/22 03:20

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -34,7 +34,7 @@
34
34
 
35
35
  a = 4.6
36
36
 
37
- print(type(a), a) # <class 'float'> 4.0
37
+ print(type(a), a) # <class 'float'> 4.6
38
38
 
39
39
 
40
40
 
@@ -42,7 +42,7 @@
42
42
 
43
43
  b = round(a)
44
44
 
45
- print(type(b), b) # <class 'int'> 4
45
+ print(type(b), b) # <class 'int'> 5
46
46
 
47
47
 
48
48