728x90
수학 문제입니다.
유클리드 기하학에서의 원의 넓이와
택시 기하학에서의 원의 넓이를 구하면 됩니다.
유클리드 기하학은
반지름(r) * 반지름(r) * 파이(π) 입니다.
택시 기하학은
반지름(r) * 반지름(r) * 2 입니다.
#include <iostream>
#include <algorithm>
#include <cstring>
#include <string>
#include <cmath>
#define fio ios_base::sync_with_stdio(0), cin.tie(0)
#define PI 3.14159265358979323846
using namespace std;
int main(int argc, char *argv[])
{
double n;
double euclid;
double taxi;
cin >> n;
euclid = n * n * PI;
taxi = n * n * 2;
cout << fixed;
cout.precision(6);
cout << euclid << endl;
cout << taxi << endl;
return 0;
}
'알고리즘' 카테고리의 다른 글
[C++] 백준 2798번 블랙잭 (0) | 2019.09.01 |
---|---|
[C++] 백준 1002번 터렛 (0) | 2019.08.31 |
[C++] 백준 4153번 직각삼각형 (0) | 2019.08.31 |
[C++] 백준 3009번 네 번째 점 (0) | 2019.08.31 |
[C++] 백준 2217번 로프 (0) | 2019.08.31 |