liyanchenlycccccc @ 2023-09-08 22:05:45
#include <bits/stdc++.h>
using namespace std;
int n,m,x1,y1,x2,y2,a[1001][1001];
int main()
{
cin>>n>>m;
for(int l=1; l<=m; l++)
{
cin>>x1>>y1>>x2>>y2;
for(int i=x1; i<=x2; i++)
for(int j=y1; j<=y2; j++)
a[i][j]++;
}
for(int i=1; i<=n; i++)
{
for(int j=1; j<=n; j++)
{
cout<<a[i][j]<<" ";
}
cout<<'\n';
}
return 0;
}
by ___A__ @ 2023-09-08 22:08:10
y1是函数
by junjie_zhao @ 2023-09-08 22:29:22
好像是
的自带参数。
by __Harry_Haiyun__ @ 2023-09-09 08:46:28
使用iostream
单独头文件即可。
by __Harry_Haiyun__ @ 2023-09-09 08:47:36
你定义的变量 math.h
库里面的 std::y1()
函数