Remove unnecessary parantheses
This commit is contained in:
@@ -72,7 +72,7 @@ namespace BasicProgramming
|
||||
|
||||
public static int ModuloOperations(int a, int b, int c)
|
||||
{
|
||||
return (a % b) % c;
|
||||
return a % b % c;
|
||||
}
|
||||
|
||||
public static double CubeOf(double a)
|
||||
|
||||
Reference in New Issue
Block a user