fork download
  1. #include "stdio.h"
  2.  
  3. int main()
  4. {
  5. // area de rectangulo
  6. float b , h, area; // base, altura, area
  7.  
  8. scanf("%f %f", &b, &h);
  9.  
  10. area = b * h;
  11.  
  12. printf("Area: %f.", area);
  13.  
  14. // getch();
  15.  
  16. return 0;
  17. }
  18.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty