From WikiChip
$gcd identifier - mIRC
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
$gcd returns the Greatest Common Denominator for 2 or more integers.
Details[edit]
The Greatest Common Denominator is the largest integer that can be evenly divided into each input number, and is the product of all prime factors shared by all input numbers. Result for (0,0) is zero, but otherwise must always be a positive integer.
Synopsis[edit]
$gcd(N1,N2[,N3]...)
Parameters[edit]
- N - Integers
Properties[edit]
None
Example[edit]
//var -s %num1 $calc(2*3*5*7*11*13*17*19) , %num2 $rand(11111,99999) | if ($gcd(%num1,%num2) > 1) echo -a %num2 is not a prime because it has a prime factor smaller than 20 //echo -a $gcd(25,35) is 5 because 5 can be evenly divided into both numbers //echo -a $gcd(25,35,42) is 1 because there is no number greater than 1 which can be evenly divided into all 3 numbers
Compatibility[edit]
Added: mIRC v7.72
Added on: 27 Nov 2022
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.