fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. return 0;
  6. }
  7. // **************************************************
  8. // Function: calcAreaOfRectangle
  9. //
  10. // Description: Calculates the area of a Rectangle
  11. //
  12. //
  13. // Parameters: base - base of the Rectangle
  14. // height - height of the Rectangle
  15. //
  16. // Returns: area - area of Rectangle
  17. //
  18. // ***************************************************
  19.  
  20. float calcAreaOfTriangle(float width, float height) // float width and height
  21. {
  22.  
  23. float area; // area of the Rectangle
  24.  
  25. // calculate area
  26. area = 0.5 * width * height; // Area of triangle is .5 x W x H plugin variables
  27. // TODO - add missing code HERE
  28. printf("Enter the width of the shape:\n"); // prompt for the width
  29. scanf("%f", &width);
  30.  
  31. printf("Enter the height of the shape:\n");
  32. scanf("%f", &height);
  33.  
  34. return (area);
  35. } //calcAreaOfTriangle
Success #stdin #stdout 0.01s 5288KB
stdin
26.1 15
stdout
Standard output is empty