Define the missing method. Use “this” to distinguish the local member from the parame

Define the missing method. Use “this” to distinguish the local member from the parameter name.

Looking for someone to write your essay in 2 hours? Assignment123 can help. Hire an expert writer to tackle your essay paper and get it done quickly and efficiently. You can also order a custom essay, buy essay online, or get essay help from our team of experienced writers.

Get your paper done on time by an expert in your field.
plagiarism free

 

 

// ===== Code from file CablePlan.java =====

public class CablePlan {

private int numDays;

 

// FIXME: Define setNumDays() method, using “this” implicit parameter.

public void setNumDays(int numDays) {

 

/* Your solution goes here */

 

}

 

public int getNumDays() {

return numDays;

}

}

// ===== end =====

 

// ===== Code from file CallCablePlan.java =====

import java.util.Scanner;

 

public class CallCablePlan {

public static void main(String [] args) {

Scanner scnr = new Scanner(System.in);

CablePlan house1Plan = new CablePlan();

int userNum;

 

userNum = scnr.nextInt();

house1Plan.setNumDays(userNum);

System.out.println(house1Plan.getNumDays());

}

}

// ===== end =====