int main(int argc, char* argv[]) { int a=1199; int b=3; double c=0.0; _asm { fld a; fdiv b; fstp qword ptr c; } printf("结果为%.2lf\n",c); return 0; }