-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInstrumentMain.java
More file actions
64 lines (60 loc) · 1.63 KB
/
InstrumentMain.java
File metadata and controls
64 lines (60 loc) · 1.63 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
abstract class Instrument
{
public abstract void Play();
}
class Piano extends Instrument
{
public void Play()
{
System.out.println("Piano is playing tan tan tan tan");
}
}
class Flute extends Instrument
{
public void Play()
{
System.out.println("Flute is playing toot toot toot toot ");
}
}
class Guitar extends Instrument
{
public void Play()
{
System.out.println("Guitar is playing tin tin tin");
}
}
class InstrumentMain {
public static void main(String args[]) {
Instrument A[] = new Instrument[10];
for (int i = 0; i< 10; i++) {
switch (i % 3)
{
case 0: {
A[i] = new Piano();
break;
}
case 1: {
A[i] = new Flute();
break;
}
case 2: {
A[i] = new Guitar();
break;
}
}
}
for (int i = 0; i < 10; i++) {
System.out.println((i + 1));
A[i].Play();
if (A[i] instanceof Piano) {
System.out.println("Piano");
}
if (A[i] instanceof Flute) {
System.out.println("Flute");
}
if (A[i] instanceof Guitar) {
System.out.println("Guitar");
}
}
}
}