Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134450 gqj 04保留两位小数 C++ Wrong Answer 1 MS 268 KB 153 2025-10-27 17:05:38

Tests(0/10):


Code:

#include <iostream> using namespace std; int main(){ double a=5.0; double b=2.5; scanf("%d%d",&a,&b); printf("%.2lf",a/b); return 0; }


Run Info:

------Input------
0 8
------Answer-----
0.00
------Your output-----
2.00