Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package quiz;
  2.  
  3. public class Geometry {
  4.  
  5. public static double circleArea(double r) {
  6.  
  7. return Math.PI * Math.pow(r, 2);
  8.  
  9. }
  10.  
  11. public static double recArea(double length, double width) {
  12.  
  13. return length * width;
  14.  
  15. }
  16.  
  17. public static double triandleArea(double base, double height) {
  18.  
  19. return base * height * 0.5;
  20.  
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement