int( ) 函数示例

clear
? int(12.5)      && 显示 12
? int(6.25 * 2)  && 显示 12
? int(-12.5)     && 显示 -12
store -12.5 to gnnumber
? int(gnnumber)  && 显示 -12