- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapo.java
More file actions
Latest commit
33 lines (33 loc) · 614 Bytes
/
Copy pathapo.java
File metadata and controls
33 lines (33 loc) · 614 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
classapoorv
{
publicstaticvoidmain(Stringargs[])
{
//Version1 branch
displayV1();
displayV2();
displayV3();
displayV4();
updateV4_1();
}
//Version1
staticvoiddisplayV1()
{
System.out.println("This is version 1 of the app");
}
staticvoiddisplayV3()
{
System.out.println("This is Version 3 of the app");
}
staticvoiddisplayV2()
{
System.out.println("This is Version 2 of the app");
}
staticvoiddisplayV4()
{
System.out.println("This is Version 4 of the app");
}
staticvoidupdateV4_1()
{
System.out.println("This is an update to the version 4 of the app");
}
}