Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/332.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 括号应为。。。。不知道在哪里_Java_Debugging - Fatal编程技术网

Java 括号应为。。。。不知道在哪里

Java 括号应为。。。。不知道在哪里,java,debugging,Java,Debugging,所以我在做一个关于模块化编程的作业,这里我得到了一个括号中的预期错误。代码如下: import java.util.*; public class stlab09 { public static void main (String args[]) { System.out.println("\nLAB09 90 POINT VERSION\n\n"); enterData(); comput

所以我在做一个关于模块化编程的作业,这里我得到了一个括号中的预期错误。代码如下:

import java.util.*;

public class stlab09
{       

public static void main (String args[])                             
{   
    System.out.println("\nLAB09 90 POINT VERSION\n\n");
    enterData();
    computeGPA();
    displayData();
}

static String lGrade1;
static String lGrade2;
static String lGrade3;
static String lGrade4;
static int cHours1; 
static int cHours2;
static int cHours3;
static int cHours4;
static String dummy;
public static double gpa;

public static void enterData()
{       
    Scanner in = new Scanner(System.in);    
    System.out.print("Enter course 1 Grade  ===>>  ");
    lGrade1 = in.nextLine();
    System.out.print("enter course 1 Hours  ===>>  ");
    cHours1 = in.nextInt(); dummy = in.nextLine();
    System.out.print("Enter course 2 Grade  ===>>  ");
    lGrade2 = in.nextLine(); 
    System.out.print("enter course 2 Hours  ===>>  ");
    cHours2 = in.nextInt(); dummy = in.nextLine();
    System.out.print("Enter course 3 Grade  ===>>  ");
    lGrade3 = in.nextLine(); 
    System.out.print("enter course 3 Hours  ===>>  ");
    cHours3 = in.nextInt(); dummy = in.nextLine();
    System.out.print("Enter course 4 Grade  ===>>  ");
    lGrade4 = in.nextLine(); 
    System.out.print("enter course 4 Hours  ===>>  ");
    cHours4 = in.nextInt(); dummy = in.nextLine();
}

public static void computeGPA()
{
    Grades.gradeValue();
    Grades.courseValue();
    Grades.getGPA();
}

public static void displayData()
{   
    System.out.println();
    System.out.println("Course1 Grade: " + lGrade1 +  "  Course1 Credit Hours: " + cHours1);
    System.out.println("Course2 Grade: " + lGrade2 +  "  Course2 Credit Hours: " + cHours2);
    System.out.println("Course3 Grade: " + lGrade3 +  "  Course3 Credit Hours: " + cHours3);
    System.out.println("Course4 Grade: " + lGrade4 +  "  Course4 Credit Hours: " + cHours4);
    System.out.println();
    System.out.println("Current GPA: " + gpa);
}
}

public class Grades() ***<<<<<<<<<<<<<<<<<< bracket expected here***
{
public static void gradeValue()
{
    int value = 0;

    char lg1 = lGrade1.charAt(0);
    switch(lg1)
        {
            case 'A':  value = 4;  break;
            case 'B':  value = 3;  break;
            case 'C':  value = 2;  break;
            case 'D':  value = 1;  break;
            case 'F':  value = 0;  break;
        }

    int gVal1 = value;

    char lg2 = lGrade2.charAt(0);
    switch(lg2)
        {
            case 'A':  value = 4;  break;
            case 'B':  value = 3;  break;
            case 'C':  value = 2;  break;
            case 'D':  value = 1;  break;
            case 'F':  value = 0;  break;
        }

    int gVal2 = value;

    char lg3 = lGrade3.charAt(0);
    switch(lg3)
        {
            case 'A':  value = 4;  break;
            case 'B':  value = 3;  break;
            case 'C':  value = 2;  break;
            case 'D':  value = 1;  break;
            case 'F':  value = 0;  break;
        }

    int gVal3 = value;

    char lg4 = lGrade4.charAt(0);
    switch(lg4)
        {
            case 'A':  value = 4;  break;
            case 'B':  value = 3;  break;
            case 'C':  value = 2;  break;
            case 'D':  value = 1;  break;
            case 'F':  value = 0;  break;
        }
    int gVal4 = value; 
}

public static void courseValue()
{ 
    int cVal1 = gVal1 * cHours1;
    int cVal2 = gVal2 * cHours2;
    int cVal3 = gVal3 * cHours3;
    int cVal4 = gVal4 * cHours4;
}

public static void getGPA()
{
    double totalValue = cVal1 + cVal2 + cVal3 + cVal4;
    double totalHours = cHours1 + cHours2 + cHours3 + cHours4;
    double gpa = totalValue / totalHours;
}
}

所以,是的,我需要一些帮助来解决这个问题,因为我有点疯狂。预期的程序应该使用字母成绩和课程时数的键盘输入来计算GPA和成绩。作业是为了得到结果,但主要方法必须保持原样,几乎每个方法都提供给我,我只需要组织它们。

你已经声明了内部类的等级,就像你在它的末尾添加了一个方法一样,看看stlab09类是如何声明的,没有

脱口而出:displayData不应该有两个大括号,它只是公共类,不需要括号。NM我的注释,ASSERTJava==C;:@Quilliom第二个大括号是用于它所在的类,而不是用于displayData是的,我同意缩进应该更好。“在getGPA和成绩课上也有类似的事情。”丹尼斯曼说。谢谢你。@Quillio我没问题。我也经常这样做。正如Dennis Meng在回答我对这个问题的评论时指出的,displayData后面的额外括号是结束课程,因此应该在那里。