JulianJulianov

Java Rectangle Area

Nov 2nd, 2019
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class RectangleArea
  2. {
  3. public static void main(String[] args)
  4. {
  5. int sideA = 12;
  6. int sideB = 5;
  7. int resultArea = sideA * sideB;
  8.  
  9. System.out.println(resultArea);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment