Need help for java GradeBook(sorry if i posted on the wrong section im new)
import java.io.*;
public class GradeBookTest{
public static void main (String args[]);
Scanner user_input = new Scanner(System.in);
GradeBook myGradeBook=new GradeBook();
System.out.print("Please Enter the courseName:");
String courseName = user_input.nextLine();
System.out.println();
myGradeBook.displayMessage(courseName)
}
}
public class GradeBook{
public static void displayMessage2(String courseName){
System.out.println(Welcome to the GradeBookfor: "+courseName);
}
}
Need help on my code. I Need to create a program that shows the Student name / Schedule / Course and a welcome message saying Welcome to the GradeBook of (name of school). Please Help
Re: Need help for java GradeBook(sorry if i posted on the wrong section im new)
Ok, what do you need help with?
Re: Need help for java GradeBook(sorry if i posted on the wrong section im new)