Eclipse错误。插入大括号以完成类主体,但它们已经是“}”

时间:2017-11-23 22:30:54

标签: java eclipse

您好第一次问,但这一直是我使用eclipse的问题。我已经有一个“}”,但它一直告诉我他们是一个语法错误,我需要在这段代码的末尾加一个大括号。改变了它仍然无法正常工作

package myprograms;
import javax.swing.JOptionPane;


public class Programch5
{
    public static void main(String[] args) 
    {
        int Hoursworked;
        double Hourlyrate;
        String input;
        input=
        JOptionPane.showInputDialog("what is the" + "number of hours worked");
        Hoursworked= Integer.parseInt(input);

        JOptionPane.showInputDialog("what is the" + Hourlyrate);
    }
}

4 个答案:

答案 0 :(得分:1)

您应该再添加一个花括号以匹配第6行的花括号。现有的花括号将从第8行关闭一个。

答案 1 :(得分:0)

尝试将第一个大括号放在公共类Programch5

的末尾

答案 2 :(得分:0)

您尚未在输入中输入任何字符串。

    package myprograms;
     import javax.swing.JOptionPane;
     public class Programch5 {

     public static void main(String[] args)
     {
     int Hoursworked; 
    double Hourlyrate;
     String input; input= "somestring";
 JOptionPane.showInputDialog("what is the" + "number of hours worked");
     Hoursworked= Integer.parseInt(input);
    JOptionPane.showInputDialog("what is the" + Hourlyrate); 

    } 

    }

用双引号输入字符串,不要忘记分号。

答案 3 :(得分:0)

        String input;
        input=
        JOptionPane.showInputDialog("what is the" + "number of hours worked");
  

输入=

这行代码会发生什么?完成它,它应该工作。