Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104888 邹文洁 04保留两位小数 C++ Wrong Answer 1 MS 268 KB 329 2025-01-11 17:35:41

Tests(1/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double a,b,s; cin>>a>>b; printf("%.2lf",a,b); return 0; }


Run Info:

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