유클리드 기하학 / 택시 기하학
택시 기하학에서의 원의 넓이는 2 R R이된다.
#define _USE_MATH_DEFINES #include <math.h> #include <iostream> using namespace std; int main() { double R; scanf("%lf", &R); printf("%.6lf\n%.6lf", (R * R * M_PI), (R * R * 2)); }