Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
29177 | lnx | 计算分数的浮点数值 | C++ | Accepted | 0 MS | 252 KB | 157 | 2023-10-21 18:43:09 |
#include <iostream> using namespace std; int main() { double a,b,c; scanf("%lf %lf",&a, &b); c=a/b; printf("%.9lf", c); return 0; }