Discover answers to your most pressing questions at Westonci.ca, the ultimate Q&A platform that connects you with expert solutions. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

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.

Sagot :

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