As i am new to java i got a task to find duplicate word only and its count. i stuck in a place and i am unable to get the appropriate output. I can not use any collections and built in tool. i tried the below code. Need some help, Please help me out.
public class RepeatedWord 
  {
   public static void main(String[] args) 
      {
          String sen = "hi hello hi good morning hello";
          String word[] = sen.split(" ");
          int count=0;
          for( int i=0;i<word.length;i++)
             {
                for( int j=0;i<word.length;j++)
                   {
                       if(word[i]==word[j])
                          {
                             count++;
                          }
                System.out.println("the word "+word[i]+" occured"+ count+" time");
                   }
             }
       }
 }
 
     
    