Advertisement
Hristo_Dimitrov10

18327 trapezoid

Oct 19th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. package trapezoid;
  2.  
  3.  public class trapezoid.java {
  4.      public static void main(String[] args) {
  5.          double a = 8;
  6.          double b = 5;
  7.          float  h = 3.5;
  8.          System.out.println("S:"  + (a+b)*h/2);
  9.      }
  10.    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement