执行以下程序段,输入`1.1 0.01 365`,输出`1.1#0.010#365`。
执行以下程序段,输入`1.1 0.01 365`,输出`1.1#0.010#365`。 ~@[](1)
```
int day;
double factor, initial;
scanf("%lf %d %lf", &initial, &factor, &day);
printf("%.1f#%.3f#%d", initial, factor, day);
```答案:FALSE