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.

Respuesta :

The program that displays Sammy’s motto, which is “Sammy’s makes it fun in the sun is given below:

The code

import java.util.Scanner;

class SammysMotto2{

public static void main( String []arg)

{System.out.println("SsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSs");

System.out.println("SsSammy's makes it fun in the sun.Ss");

System.out.println("SsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSsSs");

}

}

Read more about java programming here:

https://brainly.com/question/18554491

#SPJ1