fork download
  1. #include <stdio.h>
  2.  
  3. // Function to calculate the area of a parallelogram
  4. float calcAreaOfParallelogram(float base, float height) {
  5. float area;
  6.  
  7. // Calculate the area
  8. area = base * height;
  9.  
  10. return area;
  11. }
  12.  
  13. int main(void) {
  14. float base, height, area;
  15.  
  16. // Input measurements
  17. printf("Enter the base of the parallelogram: \n");
  18. scanf("%f", &base);
  19.  
  20. printf("Enter the height of the parallelogram: \n");
  21. scanf("%f", &height);
  22.  
  23. // Calculate the area
  24. area = calcAreaOfParallelogram(base, height);
  25.  
  26. // Print the result
  27. printf("The area of the parallelogram is: %.2f\n", area);
  28.  
  29. return 0;
  30. }
  31.  
Success #stdin #stdout 0s 5288KB
stdin
2
5
stdout
Enter the base of the parallelogram: 
Enter the height of the parallelogram: 
The area of the parallelogram is: 10.00