How can you format LocalDateTime.now() to display as "dd/MM/yyyy HH:mm:ss"?
LocalDateTime.now()
None of the options
Using DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss") or LocalDateTime.format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"))
DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss")
LocalDateTime.format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"))
Using LocalDateTime.format(DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"))
Using DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss")