From c0dd686c0cde6ea69224447702746add570f39e9 Mon Sep 17 00:00:00 2001 From: Hiyabye Date: Wed, 24 Jan 2024 17:42:39 +0900 Subject: [PATCH] Add 14065.cpp --- 14xxx/14065.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 14xxx/14065.cpp diff --git a/14xxx/14065.cpp b/14xxx/14065.cpp new file mode 100644 index 00000000..7891e9a9 --- /dev/null +++ b/14xxx/14065.cpp @@ -0,0 +1,17 @@ +#include +#include +using namespace std; + +void solve(void) { + double x; cin >> x; + + cout << fixed << setprecision(7) << 100.00 / (1.609344 / 3.785411784 * x); +} + +int main(void) { + ios::sync_with_stdio(false); + cin.tie(nullptr); cout.tie(nullptr); + + solve(); + return 0; +} \ No newline at end of file