回答編集履歴

5

修正

2020/06/14 07:41

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ***
4
4
 
5
- `decimal`を使う
5
+ `decimal`(10進数扱う)を使う
6
6
 
7
7
  ```Python
8
8
 

4

修正

2020/06/14 07:41

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1,4 +1,6 @@
1
1
  [コンピューターが2進数](https://type.jp/et/feature/11485)だからじゃないですか?
2
+
3
+ ***
2
4
 
3
5
  `decimal`を使う
4
6
 
@@ -26,4 +28,28 @@
26
28
 
27
29
  # 1.6
28
30
 
31
+ ```***
32
+
33
+ 整数で
34
+
35
+ ```Python
36
+
37
+ n = 6
38
+
39
+ while n <= 16:
40
+
41
+ print(n/10)
42
+
43
+ n += 1
44
+
45
+ # 0.6
46
+
47
+ # 0.7
48
+
49
+ # ・・・
50
+
51
+ # 1.5
52
+
53
+ # 1.6
54
+
29
55
  ```

3

修正

2020/06/14 07:39

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1 +1,29 @@
1
1
  [コンピューターが2進数](https://type.jp/et/feature/11485)だからじゃないですか?
2
+
3
+ `decimal`を使う
4
+
5
+ ```Python
6
+
7
+ from decimal import Decimal
8
+
9
+
10
+
11
+ n = Decimal("0.6")
12
+
13
+ while n <= 1.6:
14
+
15
+ print(n)
16
+
17
+ n += Decimal("0.1")
18
+
19
+ # 0.6
20
+
21
+ # 0.7
22
+
23
+ # ・・・
24
+
25
+ # 1.5
26
+
27
+ # 1.6
28
+
29
+ ```

2

修正

2020/06/14 07:37

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1 +1 @@
1
- [コンピューターが進数](https://type.jp/et/feature/11485)だからじゃないですか?
1
+ [コンピューターが2進数](https://type.jp/et/feature/11485)だからじゃないですか?

1

修正

2020/06/14 07:33

投稿

ForestSeo
ForestSeo

スコア2722

test CHANGED
@@ -1,31 +1 @@
1
1
  [コンピューターが進数](https://type.jp/et/feature/11485)だからじゃないですか?
2
-
3
- ```Python
4
-
5
- for n in range(6, 17):
6
-
7
- print(n/10)
8
-
9
- # 0.6
10
-
11
- # 0.7
12
-
13
- # 0.8
14
-
15
- # 0.9
16
-
17
- # 1.0
18
-
19
- # 1.1
20
-
21
- # 1.2
22
-
23
- # 1.3
24
-
25
- # 1.4
26
-
27
- # 1.5
28
-
29
- # 1.6
30
-
31
- ```こうすればいけますが。