执行以下程序段,输入`1.3 0.01 365`,输出`1.3#0.010#365`。
执行以下程序段,输入`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