1 2 3 4 5 6 7 8 9 10
#include "shape.h" int main() { _rectangle rect(3, 5); _circle circle(4); rect.show_area(); circle.show_area(); return 0; }