Sammy’s Seashore Supplies rents beach equipment such as kayaks, canoes, beach
chairs, and umbrellas to tourists. Write a program that displays Sammy’s motto,
which is “Sammy’s makes it fun in the sun.” Save the file as SammysMotto.java.
Create a second program that displays the motto surrounded by a border
composed of repeated Ss. Save the file as SammysMotto2.java.
public class SammsMotto {
public static void main(String[] args) {
System.out.println("Sammy's makes it fun in the sun");
//second part of program
System.out.println("SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS");
System.out.println("S Sammy's makes it fun in the sun S");
System.out.println("SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS");
}
}
Explanation
This is a task to write two Java programs that display Sammy’s Seashore Supplies motto. The first program simply displays the motto, which is “Sammy’s makes it fun in the sun”, and is saved as SammysMotto.java
. The second program displays the motto surrounded by a border made up of repeating “S” characters, and is saved as SammysMotto2.java
. The goal is to display the motto in a visually appealing way in the console output.
Leave a Reply