Hello I am very new to programming and I am have some trouble with the class. I get the error message on line 14 cannot find symbol constructor java.lang.Strin g. I am lost and don't what to do.
import java.util.Scann er;
public class Prog7a
{
// main method
public static void main (String args [])
{
int Month, Day, Year;
Scanner input = new Scanner (System.in); //input from user
14. Prog7 Time = new Prog7( "mm","dd","yyyy " );
//assign object to gradebook
Time.displayDat e();//displays message
System.out.prin tln("Enter the Month: ");
Month = input.nextInt() ;// read
Time.setMonth (Month);//stores the year
System.out.prin tln ("Please enter the day: ");
import java.util.Scann er;
public class Prog7a
{
// main method
public static void main (String args [])
{
int Month, Day, Year;
Scanner input = new Scanner (System.in); //input from user
14. Prog7 Time = new Prog7( "mm","dd","yyyy " );
//assign object to gradebook
Time.displayDat e();//displays message
System.out.prin tln("Enter the Month: ");
Month = input.nextInt() ;// read
Time.setMonth (Month);//stores the year
System.out.prin tln ("Please enter the day: ");
Comment