i need to print the print statements continuously.
For example:
if execute these statements:
System.out.println("HI");
System.out.println("HELLO");
the default output will be like this:
HI
HELLO
But i need to print:
HI HELLO
how to print these statement continuously in java?