0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 23:45:25 +00:00

B2011 计算分数的浮点数值

R53229584
This commit is contained in:
Baoshuo Ren 2021-07-15 19:03:18 +08:00 committed by Baoshuo Ren
parent df9f8cd6ad
commit 0f4f4b00b4
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
double a, b;
cin >> a >> b;
cout << fixed << setprecision(9) << a / b << endl;
return 0;
}