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