#include "string.h" #include "math.h" int main () { double result = (double)sqrt(2.3456F); unsigned char data[8]; //holds the bytes of the result memmove(data,&result,8); for(int i=0;i<8;i++) printf("%d\n",data[i]); return 0; } 上述相同的代码将sqr 浏览0提问于2012-0...