46 lines
1.5 KiB
Java
46 lines
1.5 KiB
Java
// ****************************************************************
|
||
// Student.java
|
||
//
|
||
// Define a student class that stores name, score on test 1, and
|
||
// score on test 2. Methods prompt for and read in grades,
|
||
// compute the average, and return a string containing student’s info.
|
||
// ****************************************************************
|
||
import java.util.Scanner;
|
||
public class Student
|
||
{
|
||
private String studentName;
|
||
private double test1;
|
||
private double test2;
|
||
public Student(String studentName)
|
||
{
|
||
this.studentName = studentName;
|
||
this.test1 = 0;
|
||
this.test2 = 0;
|
||
}
|
||
//-----------------------------------------------
|
||
//inputGrades: prompt for and read in student's grades for test1 and test2.
|
||
//Use name in prompts, e.g., "Enter's Joe's score for test1".
|
||
//-----------------------------------------------
|
||
public void inputGrades()
|
||
{
|
||
System.out.println("Enter "+studentName+"'s score for test1");
|
||
Scanner scan = new Scanner(System.in);
|
||
test1 = scan.nextDouble();
|
||
System.out.println("Enter "+studentName+"'s score for test2");
|
||
test2 = scan.nextDouble();
|
||
}
|
||
//-----------------------------------------------
|
||
//getAverage: compute and return the student's test average
|
||
//-----------------------------------------------
|
||
public double getAverage()
|
||
{
|
||
return (test1+test2)/2;
|
||
}
|
||
//-----------------------------------------------
|
||
//getName: print the student's name
|
||
//-----------------------------------------------
|
||
public String getName()
|
||
{
|
||
return studentName;
|
||
}
|
||
} |