Write JAVA Program to simply display you name or any message...



I/P:-

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package TUTschool;

/**
 *
 * @author lenovo
 */
public class Display_own_Name {
    //Start of main() function....
    public static void main(String args[])
    {   //To Print Message....
        System.out.println("My Self Kishan.Rami....!!!\nEnjoy With Fun...!!!");
    }
    //End of main() function....
}

O/P:-

run:
My Self Kishan.Rami....!!!
Enjoy With Fun...!!!
BUILD SUCCESSFUL (total time: 2 seconds)
^