是否需要多个条件,例如多个 if else 语句才能正确打印相交矩形?
Step 3: 两个矩形如果有共同的面积就相交 两个矩形不重叠如果它们只是接触(公共边,或公共角)</p>
当且仅当,两个矩形相交(如上所述)
i) max(xmin1, xmin2) < min(xmax1, xmax2) 并且
ii) 最大值(ymin1, ymin2) < 最小值(ymax1, ymax2)
您的输出将被格式化。如下图所示,其中一个矩形显示为其左下角坐标(xmin, ymin)和右上角坐标(xmax, ymax)。其中坐标是笛卡尔平面中的坐标。
样本输出:
enter two rectangles:
1 1 4 4
2 2 5 5
rectangle 1: (1,1)(4,4)
rectangle 2: (2,2)(5,5)
intersection rectangle: (2,2)(4,4)
和
enter two rectangles:
1 1 4 4
5 5 10 10
rectangle 1: (1,1)(4,4)
rectangle 2: (5,5)(10,10)
these two rectangles do not intersect
代码:
#include <stdio.h>
#include <stdlib.h>
int readRect (int *w, int *x, int *y, int *z){
return scanf("%d%d%d%d",w,x,y,z);
}
int minInt(int x1, int x2){
return x1, x2;
}
int maxInt(int y1, int y2){
return y1, y2;
}
int main (void){
int a,b,c,d,e,f,g,h;
printf(">>enter two rectangles:\n");
readRect(&a,&b,&c,&d);
readRect(&e,&f,&g,&h);
printf("rectangle 1:(%d,%d)(%d,%d)\n",a,b,c,d);
printf("rectangle 2:(%d,%d)(%d,%d)\n",e,f,g,h);
if(maxInt(a,e) < minInt(c,g) && maxInt(b,f) < minInt(d,g)){
printf("intersection rectangle: (%d,%d)(%d,%d)\n",?,?,?,?);
}
else {
printf("these rectangles do not intersect\n");
}
return EXIT_SUCCESS;
}