Remove unnecessary parantheses

This commit is contained in:
2025-08-05 08:14:11 +02:00
parent c156c70b78
commit a81c4ee882

View File

@@ -72,7 +72,7 @@ namespace BasicProgramming
public static int ModuloOperations(int a, int b, int c) public static int ModuloOperations(int a, int b, int c)
{ {
return (a % b) % c; return a % b % c;
} }
public static double CubeOf(double a) public static double CubeOf(double a)