-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectPlanV2.java
More file actions
105 lines (87 loc) · 1.84 KB
/
ProjectPlanV2.java
File metadata and controls
105 lines (87 loc) · 1.84 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
//main class it not complete yet
import java.util.Scanner;
import java.io.File;
class Students//parent class
{
protected String Name;
protected int ID;
protected String Course;
public void setName(String Name)
{
this.Name=Name;
}
public void setID(int ID)
{
this.ID=ID;
}
public void setCourse(String Course)
{
this.Course=Course;
}
public String getName()
{
return Name;
}
public int getID()
{
return ID;
}
public String getCourse()
{
return Course;
}
}
class Result extends Students//Result class is a child of Students class
{
private double MidMarks;
private double FinalMarks;
protected double TotalMarks;
public void setMidMarks(double MidMarks)
{
this.MidMarks=MidMarks*0.4;//mid mark count 40%
}
public void setFinalMarks(double FinalMarks)
{
this.FinalMarks=FinalMarks*0.6;//final mark count 60%
}
public void setTotalMarks(double TotalMarks)//total mark is 40% of mid and 60% of final
{
this.TotalMarks=TotalMarks+MidMarks+FinalMarks;
}
public double getMidMarks()
{
return MidMarks;
}
public double getFinalMarks()
{
return FinalMarks;
}
public double getTotalMarks()
{
return TotalMarks;
}
}
public class ProjectPlanV2//Main class
{
public static void main(String[] args)
{
System.out.println("\n WELCOME TO STUDENT EXAMINATION MANAGEMENT SYSTEM \n");
Scanner input1=new Scanner(System.in);
System.out.print("Enter User Name: ");//use "admin"
String UserName=input1.next();
System.out.print("Enter Password: ");//use "admin"
String Password=input1.next();
if((UserName.equals("admin")) && (Password.equals("admin")))
{
System.out.println("\n Authentication Successful!!");
//TO BE CONTINUED
//***************
//***************
//***************
}
else
{
System.out.println("\n Authentication Failed!!");
}
}
}