在VFP中 计算时 ABS 和int 是什么意思和作用

2025-05-19 12:24:57
推荐回答(1个)
回答1:

ABS() 取绝对值函数,如 abs(-5)=5
INT() 取整函数,取出小数的整数部份,注意不四舍五入,如 int(3.14)=3 int(17.85)=17