forked from AllenDowney/ThinkJavaCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.java
More file actions
33 lines (23 loc) · 421 Bytes
/
Student.java
File metadata and controls
33 lines (23 loc) · 421 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class Student
{
private String name;
private int studentId;
private double gpa;
public String getName()
{
return name;
}
public int getStudentId()
{
return studentId;
}
public double getGpa()
{
return gpa;
}
public Student (String name, int studentId)
{
this.name = name;
this.studentId = studentId;
}
}