public static void main(String[] args) {
Person Person = new Person();
//write your code here
}
This is my code. what is wrong with this??
Resolved
Comments (4)
- Popular
- New
- Old
You must be signed in to leave a comment
Nirake_
23 March 2020, 17:53
In the main method :
(Line 9)
Person person=new Person();
+4
Rismitha Ismail
16 April 2020, 19:06
thank you
0
Attila
23 March 2020, 13:42solution
Line 9:
The variable name starts with a lowercase letter. Should be:
+6
Rismitha Ismail
16 April 2020, 19:06
thank you
0