VBScript에서 MOD란?
MOD : 나머지를 구하는 함수
Debug.WriteLine(10 Mod 5) ' Output: 0 Debug.WriteLine(10 Mod 3) ' Output: 1 Debug.WriteLine(-10 Mod 3) ' Output: -1 Debug.WriteLine(12 Mod 4.3) ' Output: 3.4 Debug.WriteLine(12.6 Mod 5) ' Output: 2.6 Debug.WriteLine(47.9 Mod 9.35) ' Output: 1.15
'Development > ASP' 카테고리의 다른 글
ASP asp페이지를 엑셀형태로 불러오기 (0) | 2017.04.07 |
---|---|
ASP Split 함수 (0) | 2017.04.07 |
ASP Cint와 같은 형변환 함수 (0) | 2017.03.14 |
ASP Global.asa 란? (0) | 2017.02.11 |
ASP include (0) | 2017.02.11 |