import java.util.*;
import java.lang.*;
import java.io.*;
// The main method must be in a class named "Main".
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner (System.in);
System.out.println("Enter your site name");
String site = sc.nextLine();
System.out.println(site+" checking....");
boolean check = site.endsWith(".com");
boolean check2= site.endsWith(".in");
boolean check3= site.endsWith(".org");
if (check==true)
System.out.println(site+" is a Commercial site");
else if (check2==true)
System.out.println (site+" is a Indian site ");
else if (check3==true)
System.out.println(site+" is a Organization site");
else
System.out.println(" Sorry \n :- I know only three types of website \n 1. commercial website \n 2. organization website \n 3. Indian website ");
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: