APCSA/U1/L1/U1_L1_Activity_Three.java
2026-03-09 21:55:57 -07:00

20 lines
667 B
Java
Executable file

package U1.L1;
/* Lesson 1 Coding Activity Question 3 */
class U1_L1_Activity_Three {
public static void main(String[] args) {
System.out.println("1. Grab Peanut Butter, Jelly, and bread.");
System.out.println("2. Grab a knife and spoon.");
System.out.println("3. Take out two pieces of bread.");
System.out.println(
"4. Put a bit of peanut butter on one slice, and spread it around."
);
System.out.println(
"5. Put jelly on the other slice and spread it arround."
);
System.out.println("6. Put the two slices together.");
System.out.println("7. Enjoy.");
}
}