Showing posts with label JAVA - Introduction. Show all posts
Showing posts with label JAVA - Introduction. Show all posts

Print anything by using JAVA String

class Main{
    public static void main(String args[]){
        String ss = "I Love JAVA";
        System.out.println(ss);
        }
}



The Output is Given Below:
I Love JAVA

Java Introduction

class introduction
{
 public static void main(String args[])
 {
  System.out.println("This is your First Java Program");
 }
}


The Output is Given Below:
This is your First Java Program