Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class P06CalculateRectangleArea {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int widthInput = Integer.parseInt(scanner.nextLine());
- int lengthInput = Integer.parseInt(scanner.nextLine());
- int result = calculateArea(widthInput, lengthInput);
- System.out.println(result);
- }
- public static int calculateArea(int width, int length) {
- return width * length;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement