Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89029 | 赵天瑜 | 06整数除法 | C++ | Accepted | 1 MS | 268 KB | 217 | 2024-08-21 17:48:18 |
#include<iostream> #include<cstdio> #include<iomanip> #include<string> using namespace std; int main() { int a,b; cin>>a>>b; double c; c=double(a)/b; printf("%.5lf",c); return 0; }