8th Java - Simple Printing
8th Java - Simple Printing
1)
public class Comp
{System.out.println(“HELLO!”);
}}
OUTPUT:-
HELLO!
2)
public class Comp
{public static void main()
{System.out.println(“HELLO!”);
System.out.println(“HOW ARE YOU ?”);
}}
OUTPUT:-
HELLO!