O código não apresenta problema algum, mas quando rodo unsando run as, ele aparece a seguinte mensagem: "Unable to Lunch - The selection cannot be launched, and there are no recent launches"
public class TestaVariaveis {
public static void man(String [] args) {
System.out.println("ola novo teste");
int idade;
idade = 37;
System.out.println(idade);
idade = 30 + 7;
System.out.println(idade);
idade = (7 * 5) + 2;
System.out.println(idade);
System.out.println("a idade é " + idade);
}
}