Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43776 | zhangyanshuo | 计算分数的浮点数值 | C++ | Accepted | 1 MS | 252 KB | 120 | 2024-03-23 10:05:29 |
#include<iostream> using namespace std; int main() { double a,b; cin>>a>>b; printf("%.9lf",a/b); return 0; }