こんな感じですかね。元年表記や範囲外の日付の処理は省いてます。
input year,,,4
mes "年"
input month,,,2
mes "月"
input day,,,2
mes "日"
mes
button goto "計算",*calc
mes
stop
*calc
date=year*10000+month*100+day
if date<19120730 {
mes ""+year+"年"+month+"月"+day+"日は、明治以前です。"
}else:if date<19261225 {
mes ""+year+"年"+month+"月"+day+"日は、大正"+(year-1911)+"年です。"
}else:if date<19890108 {
mes ""+year+"年"+month+"月"+day+"日は、昭和"+(year-1925)+"年です。"
}else:if date<20190501 {
mes ""+year+"年"+month+"月"+day+"日は、平成"+(year-1988)+"年です。"
}else {
mes ""+year+"年"+month+"月"+day+"日は、令和"+(year-2018)+"年です。"
}
stop