Advertisement
Stefi16524

screen

May 2nd, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package MobilePhone;
  2.  
  3. public class Screen {
  4.  
  5. private double size;
  6.  
  7. private int colors;
  8.  
  9. public Screen(double size, int colors) {
  10. this.size = size;
  11. this.colors = colors;
  12. }
  13.  
  14. @Override
  15. public String toString() {
  16. return String.format("Size: %.2f\n" +
  17. "Colors: %d",this.size,this.colors);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement