Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134455 gqj 04保留两位小数 C++ Wrong Answer 2 MS 272 KB 150 2025-10-27 17:06:49

Tests(0/10):


Code:

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


Run Info:

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