Kimes

CM_PER_INCH

Oct 22nd, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. public class JavaBook
  2. {
  3.     public static void main (String[] args)
  4.     {
  5.         final double CM_PER_INCH = 2.54;
  6.         double paperWidth = 8.5;
  7.         double paperHeight = 11;
  8.         double width = paperWidth * CM_PER_INCH;
  9.         double height = paperHeight * CM_PER_INCH;
  10.        
  11.         System.out.println("Rozmiar kartki wynosi "+width+"cm na "+height+"cm");
  12.     }  
  13. }
Add Comment
Please, Sign In to add comment