Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
21
Task/Arithmetic-Rational/00-TASK.txt
Normal file
21
Task/Arithmetic-Rational/00-TASK.txt
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
;Task:
|
||||
Create a reasonably complete implementation of rational arithmetic in the particular language using the idioms of the language.
|
||||
|
||||
|
||||
;Example:
|
||||
Define a new type called '''frac''' with binary operator "//" of two integers that returns a '''structure''' made up of the numerator and the denominator (as per a rational number).
|
||||
|
||||
Further define the appropriate rational unary '''operators''' '''abs''' and '-', with the binary '''operators''' for addition '+', subtraction '-', multiplication '×', division '/', integer division '÷', modulo division, the comparison operators (e.g. '<', '≤', '>', & '≥') and equality operators (e.g. '=' & '≠').
|
||||
|
||||
Define standard coercion '''operators''' for casting '''int''' to '''frac''' etc.
|
||||
|
||||
If space allows, define standard increment and decrement '''operators''' (e.g. '+:=' & '-:=' etc.).
|
||||
|
||||
Finally test the operators:
|
||||
Use the new type '''frac''' to find all [[Perfect Numbers|perfect numbers]] less than 2<sup>19</sup> by summing the reciprocal of the factors.
|
||||
|
||||
|
||||
;Related task:
|
||||
* [[Perfect Numbers]]
|
||||
<br><br>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue