We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6668c93 commit b5bef0fCopy full SHA for b5bef0f
01Day1/HELLOWORLD/helloworld.java
@@ -1,9 +1,14 @@
1
package DAY1;
2
3
-public class helloworld {
4
- public static void main(String[] args) {
5
- System.out.println("HELLO WORLD");// here System.out.println is a out put statement like cout or printf in cpp
6
- // and c respectively
+public class Hello_World
+//It is a good practice to start the name of the Class with a capital letter
+{
+ public static void main(String[] args)
7
+ //This line acts as the entry point of the programme
8
+ {
9
+ System.out.println("HELLO WORLD");
10
+ // here System.out.println is used to print the argument present between the quotation mark
11
+ //like cout or printf in cpp and c respectively
12
}
13
14
0 commit comments