Im a student working from console and often have to separate my output with an empty line. Im not a big fan of the approach we've learned in the classroom to structure the output. What would be a better approach to this?
//code
System.out.println();
System.out.println("some output");
System.out.println();
//more code