#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ //object class: Circle class Circle { public: int radius; void showGirth() { cout<<"圓周長 = "<<2*3.14159*radius<