Write a Java application that defines a class Boat. The Boat class should provide three fields/attributes: 1) name is a variable of type String, 2) sail position is a variable of type boolean, 3) speed is a variable of type float.

Respuesta :

public class Boat {

   String name;

   boolean sailPosition;

   float speed;

}