Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
32626 | chenyifei | 计算分数的浮点数值 | C++ | Wrong Answer | 0 MS | 244 KB | 160 | 2023-12-02 11:05:35 |
#include <iostream> using namespace std; int main() { int a, b; cin>>a>>b; double c=a/b*1.0; cout << c << endl; return 0; }