在VB中表示X是4或者13的倍数的表达式怎么写

问题描述:

在VB中表示X是4或者13的倍数的表达式怎么写

if (x mod 4=0) or (x mod 13=0) then
print "X是4或者13的倍数"
end if