| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 328806 | 黄浙峰老师 | 【C1-3】计算分数的浮点数值 | C++ | Accepted | 100 | 3 MS | 248 KB | 109 | 2025-07-07 15:28:38 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<1.0*a/b; return 0; }