Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103553 | 李朋秦 | 06整数除法 | C++ | Accepted | 1 MS | 268 KB | 213 | 2024-12-29 12:07:31 |
#include<iostream> #include<cstdio> #include<iomanip> #include<cmath> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<fixed<<setprecision(5)<<(a*1.0)/(b*1.0); return 0; }