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
~74 People Reached
Favorite Forums
Favorite Tags
java x 1
Member Avatar for cowtippa

Im writing a program that will instatiate an object from another object but I have no idea how to get it to work. Here is my main code [code] public class testPurse { public static void main(String[] args) { Purse p1 = new Purse(); System.out.println(p1); p1.insert(3,0,2,1); System.out.println(p1); p1.insert(3,1,1,3); System.out.println(p1); p1.remove(3,1,0,2); …

Member Avatar for masijade
0
74