APCSA/U5/L1/U5_L1_Activity_One.java
2026-03-25 09:44:12 -07:00

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!");
}
}