Posts by Ronaldo Sena • 1 point
1 post
-
0
votes1
answer62
viewsA: Selection of a non-random number in a variable C#
Perhaps a static method is the best solution. using System; public class Program { public static void Main() { Console.Write(IsDivisible(3,3)); } public static bool IsDivisible(int x, int y) {…