Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98348 张新福 06小数除法 C++ Compile Error 0 MS 0 KB 138 2024-11-19 16:27:20

Tests(0/0):


Code:

#include <iostream> using namespace std; int main(){ double a,b,c; cin>>a>>b; c=a/b; cout<<fixed<<setprecision(2)<<c<<endl; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:8:29: error: 'setprecision' was not declared in this scope
  cout<