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