top of page

Introduction to JAVA

Updated: Aug 10, 2022

My First JAVA Program :-


This is a basic program in which a string "Hello World!" is received as it's output



CODE :

public class HELLO {                            // This is a Class
    public static void main(String[] args) {    // This is a Function
        System.out.println("Hello World!");
    }
}

OUTPUT :

ree


COMMENTS

  • Comments are the text which are ignored by the compiler / interpreter.

  • Comments in JAVA are written after double forward slash ( // ).


ree



2件のコメント


Tilak Jain
Tilak Jain
2022年8月04日

😍very nice good keep it up


いいね!
vardhman0000
2022年8月04日
返信先

Thanks 😄

いいね!
bottom of page