Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Cで以下の式を実装しようとしています
これが私のコードです:
int function(int x){ return pow(10, (((x-1)/(253/3))-1)); } int main(void){ int z = function(252); printf("z: %d\n",z); return 0; }
10を出力します。ただし、電卓は94.6を出力します。
誰かが私が間違っていることを説明できますか?