我的函数返回 0?
int ResizeLockRatio( int width, int height, int desired )
{
int returnValue = ( height / width ) * desired;
return returnValue; // returns 0?
}
int lockedRatioHeight = ResizeLockRatio( 1920, 1200, 1440 );
有任何想法吗?
我的函数返回 0?
int ResizeLockRatio( int width, int height, int desired )
{
int returnValue = ( height / width ) * desired;
return returnValue; // returns 0?
}
int lockedRatioHeight = ResizeLockRatio( 1920, 1200, 1440 );
有任何想法吗?