public static void Main()
Console.Write("Bir Sayı giriniz = ");
int sayi = Convert.ToInt32(Console.ReadLine());
if (sayi % 3 == 0 && sayi % 8 == 0)
Console.WriteLine("Girilen sayı hem 3'e hem 8'e TAM OLARAK BÖLÜNMEKTEDİR.");
Console.WriteLine("Girilen sayı hem 3'e hem 8'e TAM OLARAK BÖLÜNEMEMEKTEDİR.");