可能重复:
C 中整数除法的行为是什么?
当我用一个应该在 1 和 0 之间的答案进行除法计算时,它总是返回 0。
试试这个:
float a = 1;
float b = 2;
float c = a / b; //variable divide by variable gives 0.5 as it should
float d = 1 / 2; //number divide by number gives 0
float e = 4 / 2;
NSLog(@"%f %f %f %f %f", a,b,c, d, e);
我从控制台得到这个:
2013-01-17 14:24:17.512 我的项目 [1798:c07] 1.000000 2.000000 0.500000 0.000000 0.500000
我不知道发生了什么。