Advertisement
rmword

Untitled

Oct 12th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public class MyClass
  2. {
  3. int height;
  4. MyClass() {
  5. System.out.println("bricks");
  6. height = 0;
  7. }
  8. MyClass(int i) {
  9. System.out.println("Building new House that is "
  10. + i + " feet tall");
  11. height = i;
  12. }
  13. void info() {
  14. System.out.println("House is " + height
  15. + " feet tall");
  16. }
  17. void info(String s) {
  18. System.out.println(s + ": House is "
  19. + height + " feet tall");
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement