这是一个家庭作业问题,我完全没有想法(C 编程)。
指示:
/*
* float_neg - Return bit-level equivalent of expression -f for
* floating point argument f.
* Both the argument and result are passed as unsigned int's, but
* they are to be interpreted as the bit-level representations of
* single-precision floating point values.
* When argument is NaN, return argument.
* Legal ops: Any integer/unsigned operations incl. ||, &&. also if, while
* Max ops: 10
* Rating: 2
*/
unsigned float_neg(unsigned uf) {
return 2;
我试过简单地返回 -uf; 和其他事情,但我只是不知道该怎么做。
帮助?
可以假设以下条件:
- 使用 2s 补码,32 位整数表示。
- 以算术方式执行右移。
- 将整数移动超过字长时具有不可预测的行为。
-编辑
解决了:返回uf^0x80000000;