HI I am a new Java programmer (very new).
What do I want to do / test (not sure if this is recommended or doable?), We know that
System.out.println("Message");
will display "Message" on the command line. Is it possible to display the current time without reusing system.out.println ()?
Name, for example, instead of displaying:
10:00:01
10:00:02
10:00:03
I want to do this: 10: 00: 0X, where X will continue to count
source
share