运行 ❯
获取
您自己的
网站
×
更改方向
更改主题,深色/浅色
进入 Spaces
#include <stdio.h> #include <math.h> int main() { printf("%f\n", fma(0.5, 0.75, 1.0)); printf("%f\n", fma(3, 3, 1)); printf("%f\n", fma(2, 1.5, 1)); return 0; }
1.375000
10.000000
4.000000