code.cpp 62 B

123
  1. int triArea(int base, int height) {
  2. return (base*height)/2;
  3. }