summaryrefslogtreecommitdiff
path: root/prolog/problems/clp_r/megabytes_2/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'prolog/problems/clp_r/megabytes_2/en.py')
-rw-r--r--prolog/problems/clp_r/megabytes_2/en.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/prolog/problems/clp_r/megabytes_2/en.py b/prolog/problems/clp_r/megabytes_2/en.py
index 01fdfff..27919dc 100644
--- a/prolog/problems/clp_r/megabytes_2/en.py
+++ b/prolog/problems/clp_r/megabytes_2/en.py
@@ -6,10 +6,10 @@ slug = 'convert mebibytes to megabytes'
description = '''\
<p>A <em>mega</em>byte is the SI unit meaning 10<sup>6</sup> bytes, while a <em>mebi</em>byte is the IEC unit meaning 2<sup>20</sup> bytes. Write the predicate <code>megabytes(SI, IEC)</code> that converts between the two using constraints.</p>
<pre>
- ?- megabytes(2, IEC).
- IEC = 1.9073486328125.
- ?- megabytes(SI, 2).
- SI = 2.097152.
+?- megabytes(2, IEC).
+ IEC = 1.9073486328125.
+?- megabytes(SI, 2).
+ SI = 2.097152.
</pre>'''
hint = {}