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

Tests(1/10):


Code:

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


Run Info:

------Input------
6.2 3.1
------Answer-----
2.00
------Your output-----
0.00