Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import org.omg.Messaging.SYNC_WITH_TRANSPORT;
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- Scanner scanner=new Scanner (System.in);
- Double a=Double.parseDouble(scanner.nextLine());
- Double b=Double.parseDouble(scanner.nextLine());
- Double h=Double.parseDouble(scanner.nextLine());
- double square=(a+b)/2*h;
- System.out.println(square);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment