What's new

Java Ano error mga paps patulong po

RIMURU_tempest300

Eternal Poster
Established
Joined
Jul 2, 2019
Posts
823
Solutions
1
Reaction
1,216
Points
449
1.
write a program to print the names of the students by creating a student class. If no name is passed while creating an object student class, then the name should be "Unknown", otherwise the name should be equal to the string value passed while creating an object of student class (perform constructor overloading)

PS. first year palang po ako at wala po ako masyado alam dito sa coding


class Student
{
string name;
public;
Student(string s)
{
name = s;
}
Student()
{
name = "Unknown";
}
void print_name()
{
cout << name << endl;
}
};
int main()
{
Student s1("Jojie");
Student s2;
s1.print_name();
s2.print_name();
return 0;
}
}
 

Similar threads

Back
Top