Comment your solutions to C4 on https://www.lol-101.com/classrooms/introduction-to-java/1-7-what-is-output-what-is-output-formatting-what-are-escape-sequences. The answers will be revealed in the next class.
class Main { public static void main(String[] args) { System.out.println(" /\\_/\\ -----"); System.out.println("( O O ) / Hello \\"); System.out.println("( \\-/ ) < How Are|"); System.out.println(" | | | \\ You? /"); System.out.println("(_- -_) -----"); } }
class Main { public static void main(String[] args) { System.out.println(" -/\\---/\\- ------- "); System.out.println(" ( | | ) / Hello \\ "); System.out.println(" ( - ) Junior "); System.out.println(" | | | \\ Coder / "); System.out.println("(_________) -------- "); System.out.println(" (_| |_) "); } }
System.out.println(" ________ ________"); System.out.println("| | | I | "); System.out.println("|O O | | am |"); System.out.println("| | |actually|"); System.out.println("| ____ | | bad |"); System.out.println("|________| |________|");
class Main { public static void main(String[] args) { System.out.println(" -^---^- ------- "); System.out.println(" ( /\\ /\\ ) / Hello \\ "); System.out.println(" / \\ How is "); System.out.println(" / _____ \\ \\ Life? / "); System.out.println("(_________) -------- "); System.out.println(" |_| |_| "); } }
public class Hw {
public Hw() {
// TODO Auto-generated constructor stub
}
public static void main(String[] args) {
System.out.println(" ^---^ ------------ ");
System.out.println(" ( . . ) / Hello What \\ ");
System.out.println(" / \\ ( is ) ");
System.out.println(" / > > \\ \\ Your Name / ");
System.out.println("(_________) ----------- ");
System.out.println(" |_| |_| ");
}
}
Leo Song