Here's a Java program using a single System.out.println command to print the quote:
The Java Program
public class PrintQuote {
public static void main(String[] args) {
System.out.println("\"That brain of mine is something more than merely mortal; as time will show.\" \\Ada Lovelace \\The first computer programmer");
}
}
This program utilizes System.out.println to display the quote along with the quotation marks and author's attribution in the required format.