Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134473 zxy 04保留两位小数 C++ Compile Error 0 MS 0 KB 89 2025-10-27 17:13:08

Tests(0/0):


Code:

using namespace std; int main(){ double a=5.0,b=2.5; printf("%.2lf",a/b); }


Run Info:

Main.cc: In function 'int main()':
Main.cc:4:22: error: 'printf' was not declared in this scope
    printf("%.2lf",a/b);
                      ^