Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95143 | 程诺 | 05求长方形的周长和面积 | C++ | Wrong Answer | 0 MS | 260 KB | 376 | 2024-10-27 08:38:20 |
#include<bits/stdc++.h> using namespace std; int main(){ /**cout<<17/3<<endl; cout<<18.0/4<<endl; cout<<-17/3<<endl; cout<<17%3<<endl; cout<<-17%4<<endl; cout<<4567%100; int a = 2,b = 3,c = 4; cout<<a*b+c<<endl; cout<<a*(b+c)<<endl; cout<<(1+b)*c<<endl; cout<<a*a*b*b; **/ int N = 8,M = 3; cout<<(N+M)*2<<endl; cout<<N*M; return 0; }
------Input------
44 56
------Answer-----
200 2464
------Your output-----
22 24