mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
20 lines
667 B
Java
Executable file
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.");
|
|
}
|
|
}
|