mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 22:15:15 +00:00
12 lines
276 B
Java
Executable file
12 lines
276 B
Java
Executable file
/* Lesson 2 Coding Activity Question 3 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
public class U2_L2_Activity_Three {
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("(\\(\\");
|
|
System.out.println("( - -)");
|
|
System.out.println("((') (')");
|
|
}
|
|
}
|