mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 14:34:05 +08:00
style: enable MultipleVariableDeclarations
in checkstyle (#5175)
Co-authored-by: vaibhav <vaibhav.waghmare@techprescient.com>
This commit is contained in:
@ -30,7 +30,8 @@ public final class LeastCommonMultiple {
|
||||
* get least common multiple from two number
|
||||
*/
|
||||
public static int lcm(int num1, int num2) {
|
||||
int high, num3;
|
||||
int high;
|
||||
int num3;
|
||||
int cmv = 0;
|
||||
/*
|
||||
* value selection for the numerator
|
||||
|
Reference in New Issue
Block a user