Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
864 伊隽诚 06小数除法 C++ Compile Error 0 MS 0 KB 152 2023-05-13 14:58:17

Tests(0/0):


Code:

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


Run Info:

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