[]
Calculate the Greatest Common Divisor of oneNumber and anotherNumber.
public static int CalculateGreatestCommonDivisor(int oneNumber, int anotherNumber)
Public Shared Function CalculateGreatestCommonDivisor(oneNumber As Integer, anotherNumber As Integer) As Integer
| Type | Name | Description |
|---|---|---|
| int | oneNumber | An int indicate the one number. |
| int | anotherNumber | An int indicate another number. |
| Type | Description |
|---|---|
| int | An int indicate the Greatest Common Divisor. |