LET A=4.6LET B=2 LET C= INT(B*A) PRINTC END

问题描述:

LET A=4.6LET B=2 LET C= INT(B*A) PRINTC END

B*A=9.2
int为取最大整数.
int(c)=int(9.2)=9