Difference between revisions of "Manuals/calci/DIGITS"

 
(18 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''DIGITS()'''</div><br/>
+
=DIGITS(SomeNumberOrEmpty)=
  
 
==Description==
 
==Description==
*This function shows the digits.
+
*If a parameter is provided for SomeNumberOrEmpty, the function an array consisting of every digit in the number.
 +
*This function shows the digits 0 to 9, if no parameters are given.
 
*Digits is any of the numerals from 0 to 9, especially when forming part of a number.
 
*Digits is any of the numerals from 0 to 9, especially when forming part of a number.
 +
  
 
==Example==
 
==Example==
 
#DIGITS() = 1234567890
 
#DIGITS() = 1234567890
 +
#DIGITS(38) = ["3","8"]
 +
#DIGITS(1..100)=1  2  3  4  5  6  7  8  9  10...........100
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=vBFxMndAUgw|280|center|Digits}}
  
 
==See Also==
 
==See Also==
Line 13: Line 21:
 
==References==
 
==References==
 
[https://www.mathsisfun.com/numbers/numbers-numerals-digits.html Digits]
 
[https://www.mathsisfun.com/numbers/numbers-numerals-digits.html Digits]
 +
 +
 +
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 09:48, 5 June 2020

DIGITS(SomeNumberOrEmpty)

Description

  • If a parameter is provided for SomeNumberOrEmpty, the function an array consisting of every digit in the number.
  • This function shows the digits 0 to 9, if no parameters are given.
  • Digits is any of the numerals from 0 to 9, especially when forming part of a number.


Example

  1. DIGITS() = 1234567890
  2. DIGITS(38) = ["3","8"]
  3. DIGITS(1..100)=1 2 3 4 5 6 7 8 9 10...........100

Related Videos

Digits

See Also

References

Digits