Guest User

Untitled

a guest
Oct 18th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public class Book
  2. {
  3. int Bid;
  4. String Bname;
  5. double Price;
  6.  
  7. public void read(int Bid,String Bname,double Price)
  8. {
  9. this.Bid=Bid;
  10. this.Bname=Bname;
  11. this.Price=Price;
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment