Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4145 黄言岐 05求长方形的周长和面积 C++ Wrong Answer 0 MS 220 KB 150 2024-08-11 16:19:17

Tests(0/10):


Code:

#include<cstdio> using namespace std; int main(){ int a,b,c,d; scanf("%d%d",&a,&b); printf("面积是%d,周长是%d",a*b,a*2+b*2); }


Run Info:

------Input------
8 59
------Answer-----
134 472
------Your output-----
面积是472,周长是134