Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51409 | fengxiaohang | 计算分数的浮点数值 | C++ | Accepted | 0 MS | 240 KB | 160 | 2024-09-21 17:28:25 |
#include <bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; double c=a/b; cout<<fixed<<setprecision(9)<<c<<endl; }