-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOOPS2.java
More file actions
132 lines (96 loc) · 1.86 KB
/
OOPS2.java
File metadata and controls
132 lines (96 loc) · 1.86 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
class Employee1{
int salary;
String name;
public String getName()
{
return name;
}
public int getSalary()
{ //salary=n;
return salary;
}
public void setName(String n)
{
name =n;
}
}
class cellphone{
public void ring() {
System.out.println("Ringing....");
}
public void vibrat()
{
System.out.println("Vibrating");
}
public void callfreind()
{
System.out.println("Calling mukul");
}
}
class square{
int side ;
public int area()
{ int area =side*side;
return area;
}
public int perimeter()
{
int perimeter=4*side;
return perimeter;
}
}
class rectangle{
int a;
int b;
public int area()
{
return a*b;
}
public int perimeter()
{
return 2*(a+b);
}
}
class Tommy{
public void hit(){
System.out.println("Tommy is hitting the enemy");
}
public void running(){
System.out.println("Tommy is running away from the enemy");
}
public void firing(){
System.out.println("Tommy is firing on the enemy");
}
}
class student{
}
public class OOPS2 {
public static void main(String[] args) {
//problem 1
Employee1 harry=new Employee1();
harry.setName("Arpit is great ");
harry.salary=12000;
System.out.println(harry.getName());
//problem 2
cellphone asus= new cellphone();
asus.ring();
asus.vibrat();
asus.callfreind();
//problem 3
square sq1=new square();
sq1.side=15;
System.out.println("Area of the square "+ sq1.area());
System.out.println("Perimeter of the square "+sq1.perimeter());
//problem 4
rectangle r1=new rectangle();
r1.a=12;
r1.b=3;
System.out.println(r1.area());
System.out.println(r1.perimeter());
//problem 5
Tommy g1=new Tommy();
g1.hit();
g1.running ();
g1.firing();
}
}