RosettaCodeData/Task/ISBN13-check-digit/00-TASK.txt
2023-07-01 13:44:08 -04:00

22 lines
834 B
Text

;Task:
Validate the check digit of an ISBN-13 code:
::*   Multiply every other digit by  '''3'''.
::*   Add these numbers and the other digits.
::*   Take the remainder of this number after division by  '''10'''.
::*   If it is  '''0''',   the ISBN-13 check digit is correct.
You might use the following codes for testing:
::::*   978-0596528126       (good)
::::*   978-0596528120         (bad)
::::*   978-1788399081       (good)
::::*   978-1788399083         (bad)
Show output here, on this page
;See also:
:*   for details:   [https://isbn-information.com/the-13-digit-isbn.html 13-digit ISBN method of validation].       (installs cookies.)
<br><br>