Лови:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp3
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Введте длину массива:");
int a = Convert.ToInt16(Console.ReadLine());
int[] array = new int[a];
Console.WriteLine("Введите массив:");
for(int i = 0; i < a; i++)
{
array[i] = Convert.ToInt16(Console.ReadLine());
}
Console.WriteLine("Числа делящиеся на 9 без остатка:");
for(int i = 0; i < a; i++)
{
if(array[i]%9 == 0)
{
Console.WriteLine(array[i]+" ");
}
}
}
}
}