ÄúµÄλÖãºÑ°ÃÎÍøÊ×Ò³£¾±à³ÌÀÖÔ°£¾VBScript£¾VBScript


objects constants operators statements functions properties methods






OPERATOR:   \

 \

The \ operator divides two numbers and returns an integer (fix-point). The answer is rounded off.

Code:
<% result = 25 \ 4 %>

Output:
6

Code:
<% result = 25.12345 \ 4.043 %>

Output:
6

Code:
<% result = 25.12345 \ 4 %>

Output:
6