Difference between revisions of "Telgar/Problem311"
From Exalted - Unofficial Wiki
m |
m (link fix) |
||
Line 3: | Line 3: | ||
public Collection() | public Collection() | ||
{ | { | ||
− | ArrayList CDC = new ArrayList(); | + | [[ArrayList]] CDC = new [[ArrayList]](); |
} | } | ||
Revision as of 09:05, 3 April 2010
public class Collection {
public Collection() { ArrayList CDC = new ArrayList(); } public void addCD() { int ye; int id; String ti; String ar; String ge; System.out.println ("Enter year of purchase"); ye = Keyboard.readInt(); System.out.println ("Enter title of CD"); ti = Keyboard.readString(); System.out.println ("Enter arist"); ar = Keyboard.readString(); System.out.println ("Enter genre"); ge = Keyboard.readString(); System.out.println ("Enter ID number"); id = Keyboard.readInt(); Collection.addCD(); }
}