标签:画图 tps names bit class 每日 知识点 ++ ons
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,pair<int,int>> PII;
const int N = 1010;
int main()
{
ll n , x1,x2,y1,y2 ;
cin>>n;
while(n--){
cin >> x1>>y1>>x2>>y2;
cout<<(x2-x1)*(y2-y1)+1<<endl;
}
return 0;
}
标签:画图 tps names bit class 每日 知识点 ++ ons
原文地址:https://www.cnblogs.com/QFNU-ACM/p/12975763.html