mod( ) 函数示例

clear
? mod(36,10)  && 显示6
? mod((4*9), (90/9))  && 显示6
? mod(25.250,5.0)  && 显示0.250
? iif(mod(year(date( )), 4) = 0, 'summer olympics this year';
	, 'no summer olympics this year')