Skip to content

Commit

Permalink
Add 14065.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiyabye committed Jan 24, 2024
1 parent 0fe57ae commit c0dd686
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions 14xxx/14065.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include <iomanip>
#include <iostream>
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;
}

0 comments on commit c0dd686

Please sign in to comment.