Java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int width = sc.nextInt();
width += 5;
int length = sc.nextInt();
length *= 2;
System.out.println("width = " + width);
System.out.println("length = " + length);
System.out.println("area = " + (width*length));
}
}
|
cs |