Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
54803 wangyuce 保留12位小数的浮点数 C++ 解答错误 0 MS 240 KB 153 2024-10-31 18:53:47

Tests(0/1):


#include<bits/stdc++.h> #include<iomanip> using namespace std; int main(){ double n; cin>>n; cout<<fixed<<setprecision(n)<<12; return 0; }


测评信息: