keymasterviriya1150

Untitled

Aug 21st, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class Book {
  2. public int id;
  3. public String title;
  4. public float price;
  5. Book(int id,String title,float price){
  6. this.id = id;
  7. this.title = title;
  8. this.price =price;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment