fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.awt.Rectangle;
  4.  
  5. class Main
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. int xs = 100, ys = 5000, xe = 150, ye = 6000;
  10. Rectangle rect = new Rectangle(xs, ys, xe, ye);
  11. System.out.println(rect.getMaxX());
  12. System.out.println(rect.getMaxY());
  13. }
  14. }
Success #stdin #stdout 0.09s 213568KB
stdin
Standard input is empty
stdout
250.0
11000.0