mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
14 lines
402 B
Java
Executable file
14 lines
402 B
Java
Executable file
/* Lesson 1 Coding Activity Question 1 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
public class U5_L1_Activity_One {
|
|
|
|
/* Add the method myMethod here */
|
|
|
|
// You can uncomment and add to the main method to test your code
|
|
// You will need to remove/comment out this method before checking your code for a score
|
|
public static void myMethod() {
|
|
System.out.println("I'm a void method!");
|
|
}
|
|
}
|