fork download
  1. float calcAreaOfTrapezoid(float base1, float base2, float height);
  2.  
  3. int main() {
  4. float base1, base2, height;
  5.  
  6. // Input from user
  7. printf("Enter bases (base1 base2) and height (separated by spaces): ");
  8. scanf("%f %f %f", &base1, &base2, &height);
  9.  
  10. // Calculate and display area
  11. float area = calcAreaOfTrapezoid(base1, base2, height);
  12. printf("Area of trapezoid with bases %.2f & %.2f (height %.2f): %.2f",
  13. base1, base2, height, area);
  14.  
  15. return 0;
  16. }
  17.  
  18. // Function implementation
  19. float calcAreaOfTrapezoid(float base1, float base2, float height) {
  20. return (base1 + base2) / 2.0 * height;
  21. }
Success #stdin #stdout 0s 5288KB
stdin
5 7 4
stdout
Enter bases (base1 base2) and height (separated by spaces): Area of trapezoid with bases 5.00 & 7.00 (height 4.00): 24.00