| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139002 | 王润中 | 06整数除法 | C++ | Wrong Answer | 0 MS | 280 KB | 130 | 2025-11-30 21:31:10 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; printf("%.5lf",a/b); return 0; }
------Input------
39 15
------Answer-----
2.60000
------Your output-----
0.00000