#!/bin/bash read -p "Enter a number :" a a=7 if [ $((a % 2)) -eq 0 ]; then echo "Even number" else echo "Odd number" fi
To embed this project on your website, copy the following code and paste it into your website's HTML: