Problem #510 C++ using OBJECT ORIENTED PROGRAMMING

Write a Java program to create a class called Person with private instance variables name, age. and country. Provide public getter and setter methods to access and modify these variables.

Your Solution