Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88608 | 刘昊铭 | 04保留两位小数 | C++ | Wrong Answer | 1 MS | 264 KB | 143 | 2024-08-19 15:28:53 |
#include<iostream> using namespace std; int main(){ double a,b; scanf("%1f %1f",&a,&a); printf("%.2lf",a/b); return 0; }
------Input------
0 8
------Answer-----
0.00
------Your output-----
inf