我现在一直在努力解决这个问题,而且我正在寻求一些帮助。
我知道/给出的信息:
Child NewChild()
{
Child child;
// strdup is available on some platforms but it can
// be implemented easily.
child->name = strdup("foo");
return child;
}
int main()
{
Parent parent;
parent.NewChild = NewChild;
Child child = parent.NewChild();
}
s,所有x-coords在一个数组中,所有y-coords在另一个数组中int[]
与xcoords[5]
生成有序对)我需要找到什么
示例:
ycoords[5]
我知道如何处理这个问题......
public class Rectangle_Test {
public static void main(String[] args) {
int[] xcoords = {5,5,9,1,2,1,2};
int[] ycoords = {5,6,10,1,1,2,2};
}
}
int initialX = xcoords[0];
2.循环遍历数组,并将初始值与数组中的每个值进行比较,如果两者都不同则重置
int initialY = ycoords[0];