Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~613 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for reiyn17

hey guys.. can you help me explain this code? public Boolean insertAfter (double key, double dd) { Link current = first1 while (current.dData != key) { current = current.next; if (current == null) Return false; } Link newLink = new Link(dd); if (current == last) { newLink.next = null; last …

Member Avatar for reiyn17
0
130
Member Avatar for reiyn17

Write a java program that uses inheritance to extend box. Use the extend keyword to include weight. // use the super keyword to access the variables //of the parent class, remember that only weight(m) //was declared in this class but the other three //were declared in the parent class so …

Member Avatar for lovely12
0
296
Member Avatar for eleonora

public class Inheritance { double width; double height; double deph; Inheritance(); { } Inheritance(double w, double h, double x) { width = y; height = h; depth = d; } void volume(); { System.out.println(width*height*depth); } } class extend1 extends box { double weight; extend1(); { } extend1(double w, double h, …

Member Avatar for ShawnCplus
0
187

The End.