Advertisement
Jycko

leonarditem.java

Nov 25th, 2022
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. public class leonarditem {
  3. int price;
  4. String itemname;
  5. int itemcode;
  6. public leonarditem(int price, String itemname, int itemcode) {
  7. this.price = price;
  8. this.itemname = itemname;
  9. this.itemcode = itemcode;
  10. }
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement