语句“VARIABLE CNT:INTEGER RANGE 0 TO 7999”的作用是( )
举一反三
- 语句组“ CASE CNT IS ... END CASE”的作用( )
- 假定已经执行了Option Baese 0,语句:Dim NewArray(10) as Integer,其作用是( )。
- 本程序用到的VARIABLE语句的作用是( )
- 在IE窗口访问JSP页面,其代码如下。然后连续刷新页面,输出的结果是X,紧接着重新启动一个新的IE窗口运行该JSP代码,连续刷新两次,输出的结果是Y,可能的X和Y的值分别是( )。 <%@ page contentType=”text/html; charset=GBK” %> <html> <% Integer cnt = (Integer)application.getAttribute(“hitCount”); if ( cnt == null){ cnt = new Integer(1); }else{ cnt = new Integer(cnt.intValue() +1 ); } application.setAttribute(“hitCount”,cnt); %> <%=cnt%> </html>
- 语句“CONSTANT DIVIDE_PERIOD:INTEGER:=500”的作用是( )