ASP-常量,asp运算符,比较运算符

来源:互联网 发布:java爬虫 zol壁纸 编辑:程序博客网 时间:2024/06/14 11:07

<script language="vbs">
    '常量的定义  vbcrlf vb中的换行
    msgbox "你"&vbcrlf&"好"
    '自定义常量  不可以更改
    const pi = 3.141592653
    r = 10
    area = r*r*pi
    msgbox area
    //  \整除   /除以
    // mod 求余
    '比较运算符
    ' = 等于
    '  <> 不等于
    msgbox 3=3
    '逻辑运算符 and or
</script>

本文出自 “Kenan_ITBlog” 博客,请务必保留此出处http://soukenan.blog.51cto.com/5130995/1075656