using System;

namespace MyCompiler {
    class Program {
        public static void Main(string[] args) {
            Console.WriteLine("Digite um numero: ");
            double num = Convert.ToDouble(Console.ReadLine());
            if(num % 5 == 0){
                Console.WriteLine("numero digitado eh divisivel por 5");
            }
            else{
               Console.WriteLine("numero digitado nao eh divisivel por 5");  
            }
        }
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: