-
Notifications
You must be signed in to change notification settings - Fork 0
/
binaire.html
74 lines (74 loc) · 2.3 KB
/
binaire.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index,follow">
<meta name="keywords" content="machine de Turing , turing , émulateur de machine de turing , émulateur">
<meta name="description" content="émulateur de la machine de turing décrite en 1936">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Les chiffres en binaire</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- table des entiers en binaire -->
<div class="container">
<h4 style="text-align: center">Les chiffres de 1 à 10 en écriture binaire</h4>
<table style="padding: 5px;" class="table-striped table table-sm">
<thead class="thead-dark">
<tr>
<th style="text-align: center;" scope="col">Ecriture en chiffres arabes</th>
<th style="text-align: center;" scope="col">Ecriture en binaire</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<th>0</th>
</tr>
<tr>
<th>1</th>
<th>1</th>
</tr>
<tr>
<th>2</th>
<th>01</th>
</tr>
<tr>
<th>3</th>
<th>11</th>
</tr>
<tr>
<th>4</th>
<th>100</th>
</tr>
<tr>
<th>5</th>
<th>101</th>
</tr>
<tr>
<th>6</th>
<th>110</th>
</tr>
<tr>
<th>7</th>
<th>111</th>
</tr>
<tr>
<th>8</th>
<th>1000</th>
</tr>
<tr>
<th>9</th>
<th>1001</th>
</tr>
<tr>
<th>10</th>
<th>1010</th>
</tr>
</tbody>
</table>
<div><a class="btn btn-primary" href="./index.html">Revenir à la machine</a></div>
</div>
</body>
</html>