Gold
Gold
Provider Class
import java.util.Scanner;////import scanner to allow for user input
public class PGolf {
public static void main(String[] args) {
//begins the main method
Scanner input = new Scanner (System.in);
System.out.println("What is the manager's name?");//prints line and asks
the user to input
String Name = input.nextLine();//this would get the next string of text
when the user types
input