-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProblem.java
More file actions
24 lines (20 loc) · 432 Bytes
/
Problem.java
File metadata and controls
24 lines (20 loc) · 432 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
public class Problem {
int pNum;
String pTitle;
public Problem(int pNum, String pTitle) {
this.pNum = pNum;
this.pTitle = pTitle;
}
public int getpNum() {
return pNum;
}
public void setpNum(int pNum) {
this.pNum = pNum;
}
public String getpTitle() {
return pTitle;
}
public void setpTitle(String pTitle) {
this.pTitle = pTitle;
}
}