Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9184 | D班-陈颖钧 | 矩形面积交 | C++ | 解答错误 | 0 | 0 MS | 260 KB | 202 | 2025-04-08 20:07:03 |
#include<bits/stdc++.h> using namespace std; double a,b,c,d,e,f,g,h; int main(){ cin>>a>>b>>c>>d; cin>>e>>f>>g>>h; cout<<setprecision(2)<<fixed<<(a-e)*(c-f)*(c-g)*(d-h); return 0; }