static void Main(string[] args)
{
Random rnd = new Random();
int[] arr = new int[9];
//Заполняем
for (int i = 0; i < 9 i++)
arr[i] = rnd.Next(-10, 12);
}
int result = 1; ;
//Перебираем
for (int i = 0; i < 9; i++)
//Если кратен трем и не равен нулю
if (arr[i] % 3 == 0 && arr[i] != 0)
Console.ForegroundColor = ConsoleColor.Red;
result *= arr[i]; //Перемножаем
Console.Write(arr[i] + " ");
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine($"{Environment.NewLine}Результат умножения: {result}");
Console.ReadKey();
Объяснение:
static void Main(string[] args)
{
Random rnd = new Random();
int[] arr = new int[9];
//Заполняем
for (int i = 0; i < 9 i++)
{
arr[i] = rnd.Next(-10, 12);
}
int result = 1; ;
//Перебираем
for (int i = 0; i < 9; i++)
{
//Если кратен трем и не равен нулю
if (arr[i] % 3 == 0 && arr[i] != 0)
{
Console.ForegroundColor = ConsoleColor.Red;
result *= arr[i]; //Перемножаем
}
Console.Write(arr[i] + " ");
Console.ForegroundColor = ConsoleColor.Gray;
}
Console.WriteLine($"{Environment.NewLine}Результат умножения: {result}");
Console.ReadKey();
}
Объяснение: