Advertisement
sounny

Untitled

Jun 21st, 2018
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1. public class Weight {
  2.     int lb; int oz;
  3.     public Weight (int a, int b ) {
  4.         lb = a; oz = b;
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement