|
发表于 2025-2-9 09:19:17
|
显示全部楼层
添加以下模块
注意查看是否与原后处理定义数据有重复
# --------------------------------------------------------------------------
fs2 21 2.2 2.2lt #Decimal, force two leading & two trailing (time2)
fs2 22 2 0 2 0l #Integer, force trailing (hour)
fs2 23 0 2 0 2lt #Integer, force leading & trailing (min)
# --------------------------------------------------------------------------
fmt 21 time2
fmt 22 hour #Hour
fmt 23 min #Minutes
# --------------------------------------------------------------------------
p_progno
!spaces$
spaces$ = 0
if time$ >= 13, time2 = (time$ - 12)
else, time2 = time$
hour = int(time2), min = frac(time2)
"O", *hour, *min, e$
pheader$下面插入一行
p_progno, e$ |
|