JAVA: Assign courseStudent's name with Smith, age with 20, and ID with 9999. Use the print member method and a separate println statement to output courseStudents's data. Sample output from the given program:
Name: Smith, Age: 20, ID: 9999

// Code from file PersonData.java
public class PersonData {
private int ageYears;
private String lastName;
public void setName(String userName) {
lastName = userName;
return;
}

Solved
Show answers

Ask an AI advisor a question