I have recently built a very basic java program , and there is text which i wish to appear after a certain time eg
System.out.print("Hello");
System.out.print("Howare you");
System.out.println("Bye Bye")
when i run the program all i get is
hello how are you bye bye
(all on the same line)
so i need to know how to have say hello appear on 1 line then 5 seconds later how are you appear and then another 5 seconds later Bye bye appears
i really need help plz reply
Report this