Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9185 | D班-陈颖钧 | 矩形面积交 | C++ | 解答错误 | 0 | 1 MS | 260 KB | 198 | 2025-04-08 20:08:07 |
#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+b+c+d)/(e+f+g+h); return 0; }