Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4094 | 杨洋杰 | 06小数除法 | C++ | Wrong Answer | 0 MS | 268 KB | 180 | 2024-07-31 16:31:09 |
#include<iostream> #include<iomanip> #include<cmath> using namespace std; int main(){ double n,m; cin>>n>>m; cout<<fixed<<setprecision(2)<<n/m; return 0; }
------Input------
48.1 39.1
------Answer-----
9.00
------Your output-----
1.23