gpt4 book ai didi

math - 根据索引查找 X 和 Y

转载 作者:行者123 更新时间:2023-12-04 23:01:59 25 4
gpt4 key购买 nike

大家好

我有一个数学问题,可能是由于 sleep 不足,但我完全在画一个空白。

我需要根据索引找到 x 和 y 坐标。

所以我知道网格的宽度、高度和索引。但我不知道 X 和 Y 坐标。我需要建立一个公式来获取该数据。

例如。我知道 9 的索引。通过一个公式,我需要能够得到 X 的数字 4 和 Y 的数字 2

enter image description here

int numOfRows = 4
int numOfCols = 5
int index = 13

int X = ?
int Y = ?


//perform math magic
x = 4
y = 3

最佳答案

这很简单:

public static void foo(int i) {
int x = i % 5 + 1;
int y = i / 5 + 1;
}

关于math - 根据索引查找 X 和 Y,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47951361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com