gpt4 book ai didi

C++整数除法

转载 作者:行者123 更新时间:2023-11-27 23:20:26 27 4
gpt4 key购买 nike

说我有

SDL_Rect rect;
rect.x = 5; // rect.x is of type "Uint16"
int y = 11;

我想执行操作 rect.x/y

我想得到 float 形式的结果,然后四舍五入到最接近的 int

像这样:

float result = rect.x/y;
int rounded = ceil(result);

我应该怎么做?

最佳答案

rect.xy 转换为 float ,然后进行除法。这将强制整个除法运算以 float 进行。

float result = rect.x/(float)y;
int rounded = ceil(result);

关于C++整数除法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13391664/

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