问答详情
源自:-

代码代码一直运行不了

public class G {
    public static void main(String[] args)
    int i = 0;
    int j = 0;
    int sum = 0;
    for(i=0;i<=9;i++){
        for(j=0;j<=9;j++)
            sum = j * i;
        System.out.println("sum = j * i:"+sum);
}
}
第一行显示错误:Syntax error, insert "}" to complete ClassBody
第二行显示错误:Multiple markers at this line
    - Method breakpoint:G [entry] - main(String[])
    - Syntax error on token ")", { expected after this 
     token


提问者:qq_夏目热雪_0 2016-12-10 13:13

个回答

  • 权世界2
    2016-12-11 15:41:14

    main方法之后你没有大括号