| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157281 | 孟建宇 | 【基础题】长方形面积 | C++ | Wrong Answer | 1 MS | 272 KB | 366 | 2026-07-21 18:53:49 |
#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; double b; cin>>a>>b; cout<<a*b; cout<<" "; cout<<(a+b)*2; return 0; }
------Input------
53.3 50
------Answer-----
2665.00 206.60
------Your output-----
2665 206.6