This site requires JavaScript, please enable it in your browser!
Greenfoot
Username
Password
Remember Me?
Sign Up, Lost Password
Activity
About
Documentation
Download
Discuss
Scenarios
lucasstan
wrote ...
2020/5/22
I need help, submitting this today for AP CSP!
lucasstan
2020/5/22
#
My code doesn't work. Here it is. Line line = new Line(); it says constructor Line in class Line cannot be applied to given type; required: java.lang.String found: no arguments reason: actual and formal argument lists differ in length Help please!
danpost
2020/5/22
#
Apparently, you need a String type argument:
?
1
Line line =
new
Line(
""
);
You need to login to post a reply.
X