-->
当前位置:首页 > 题库

执行以下程序段,输入`1.3 0.01 365`,输出`1.3#0.010#365`。

Luz5年前 (2021-05-10)题库1935
执行以下程序段,输入`1.3 0.01 365`,输出`1.3#0.010#365`。 ~@[](1) ``` int day; double factor, initial; scanf("%lf %lf %d", &initial, &factor); printf("%.1f#%.3f#%d", initial, factor, day); ```

答案:FALSE