-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloWorld.java
More file actions
40 lines (36 loc) · 1.98 KB
/
HelloWorld.java
File metadata and controls
40 lines (36 loc) · 1.98 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
class HelloWorld{
public static void main(String[] args) {
System.out.println("====================================");
System.out.println(" REPUBLIC DAY - 26th JANUARY");
System.out.println("====================================");
System.out.println();
System.out.println("Significance of Republic Day:");
System.out.println("-----------------------------");
System.out.println("Republic Day commemorates India's Constitution");
System.out.println("coming into effect on January 26, 1950.");
System.out.println();
System.out.println("Key Facts:");
System.out.println("---------");
System.out.println("• Date: January 26th every year");
System.out.println("• Dr. B.R. Ambedkar: Chief Architect of Constitution");
System.out.println("• Constitution Adopted: January 26, 1950");
System.out.println("• The Constitution has 13 Parts (originally)");
System.out.println("• India became a sovereign democratic republic");
System.out.println();
System.out.println("Celebrations:");
System.out.println("------------");
System.out.println("• National Flag Hoisting");
System.out.println("• Grand Parade at Rajpath, New Delhi");
System.out.println("• School and College Programs");
System.out.println("• Cultural Events and Performances");
System.out.println("• Special Honors to Freedom Fighters");
System.out.println();
System.out.println("National Motto of India:");
System.out.println("(Satyamev Jayate - Truth Alone Triumphs)");
System.out.println();
System.out.println("====================================");
System.out.println(" JAI HIND! Happy Republic Day!");
System.out.println("====================================");
System.out.println("That completes the CI process with Jenkins on 26th jan 2026");
}
}