Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51574 | 张思存 | 保留12位小数的浮点数 | C++ | Compile Error | 0 MS | 0 KB | 150 | 2024-09-22 21:14:02 |
#include<bits/stdc++.h> int main() { double n; std::cin >> n; std::cout << std::fixed << std::setprecision12) << n; return 0; }