"illegal start of expression" when compiling in CMD [closed]

4

I have the mini program, which I'll show below. When compiling at the command prompt, I got an error on line 47 and it says:

  

illegal start of expression

I have in the program a list of entries of the size defined in ListaArray . Code:

import java.util.*;

public class NívelDePontos
{

   private static int identificar(Scanner kb, String mensagem, String mensagemErro) 
   {
        while (true) 
        {
            System.out.println(mensagem);
            try 
            {
                return Integer.parseInt(kb.nextLine());
            } 
            catch (NumberFormatException e) 
            {
                System.out.println(mensagemErro);
            }
        }
    }

    private static boolean lerSimNao(Scanner kb, String mensagem, String mensagemErro) 
    {
        while (true) 
       {
            System.out.println(mensagem);
            String x = kb.nextLine();
            if (x.equalsIgnoreCase("S")) return true;
            if (x.equalsIgnoreCase("N")) return false;
            System.out.println(mensagemErro);
        }
    }

    public static void main(String[] args) 
    {
        Scanner kb = new Scanner(System.in);
        {        
            int identidade = identificar(kb, "Introduza o número seu número de Telefone ou ID Thumba ", "Registamos um erro . Por favor, tente novamente.");
            System.out.println("Bem-vindo, utilizador" +" " + identidade + ".");

             int count, msg, nivel1;
             int[] ListaArray;   ListaArray = new int[100];

             while(msg <= nivel1)
             {
                 count = msg;
                 count++;
                 return <count>;            
             }

             System.out.println("Obrigado, até a próxima.");
        }
    }
}
    
asked by anonymous 21.09.2016 / 10:34

1 answer

1

As said @diegofm, the syntax is:

return count;

It would be simpler

return msg + 1;

if you consider that you are matching the count value on the top row. Maybe you have a logic problem the way the code was built.

    
21.09.2016 / 14:48