Print and Println Programs Core Java
class PrintAndPrintlnDemo
{
public static void main(String[] args)
{
System.out.print("Welcome to the amazing world JAVA ");
System.out.println("And Welcome to JAVA HEAVEN Naresh i Technologies");
System.out.print("Work Smart");
System.out.println("And Get Best Results");
System.out.println("All the best for your Java Career");
}
}