Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
51573 zhangsicun 保留3位小数的浮点数 C++ 通过 1 MS 248 KB 149 2024-09-22 21:13:17

Tests(1/1):


#include<bits/stdc++.h> int main() { float n; std::cin >> n; std::cout << std::fixed << std::setprecision(3) << n; return 0; }


测评信息: