|
/* Drawing a House Write a program that draws a house using characters inside of quotation marks. The two output statements in Java for console applications are System.out.print("stuff goes here");-- and -- System.out.println("stuff goes here"); TODO:
*/
// code snippet goes here.
System.out.print("This ");
System.out.println("is ");
System.out.print("my ");
System.out.print("snippet ");
System.out.print("of\n");
System.out.println("code.");
|