最常见的带有方法错误的字母

时间:2014-11-19 00:14:28

标签: java loops counter

尝试对数组进行计数,但却像处理任何其他类型的变量一样无法对其进行处理 每次我尝试与其他几个一起编译时,我得到一个丢失的方法体错误 错误,不确定我错过了什么。

  public static char maxLetterRecurrence(String sampleInput, int[]count);
  {

     int length=sampleInput.length();
     int letterCount = 1;
     int max = 0;
     char maxChar = 0;
     for(int i=1; i<length; i++)
     {  
         if(count[i]==count[i-1])
       {
         letterCount++;
       } 
       else 
       {
          if(letterCount>max)
          {  
           max=letterCount;
           maxChar=count[i-1];
          }
       }
       return maxChar;
     }
   }

1 个答案:

答案 0 :(得分:0)

更改此行

public static char maxLetterRecurrence(String sampleInput, int[]count);

public static char maxLetterRecurrence(String sampleInput, int[]count)

最后你不应该有分号。