zoukankan      html  css  js  c++  java
  • JSP第二次作业

    1.编写jsp页面,输出大写、小写英文字母表

    <%@ page language="java" contentType="text/html; charset=utf-8"
        pageEncoding="utf-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>英文字母表</title>
    </head>
    <body>
        <%! 
        char btemp='A',stemp='a';
        int i;
        %>
        <%
        for(i=0;i<26;i++){
            out.print((char)btemp);
            out.print((char)stemp+"	");
            btemp+=1;
            stemp+=1;
        }
        %>
    </body>
    </html>
    
    
    

    2.用循环结构输出三行五列的table
    <%@ page language="java" contentType="text/html; charset=utf-8"
        pageEncoding="utf-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>3行5列table</title>
    </head>
    <body>
        <table border="2" width="600" height="80">
        <%for(int i=0;i<3;i++){%>
            <tr>
                <% for(int j=0;j<5;j++){%>
                <td></td>
                <% }%>
            </tr>
        <% } %>
            
        </table>
    </body>
    </html>
    
    



    <%@ page language="java" contentType="text/html; charset=utf-8"    pageEncoding="utf-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>英文字母表</title></head><body><%! char btemp='A',stemp='a';int i;%><%for(i=0;i<26;i++){out.print((char)btemp);out.print((char)stemp+" ");btemp+=1;stemp+=1;}%></body></html>

  • 相关阅读:
    对弈类游戏的人工智能(5)--2048游戏AI的解读
    对弈类游戏的人工智能(4)--游戏AI的落地
    对弈类游戏的人工智能(3)--博弈树优化
    对弈类游戏的人工智能(2)--学习算法
    java.awt.headless 模式
    SpringBoot启动过程分析
    SpringBoot入门之内嵌Tomcat配置
    git tag的用法
    SpringBoot程序远程debug
    SpringBoot入门之分散配置
  • 原文地址:https://www.cnblogs.com/rongrui/p/12508117.html
Copyright © 2011-2022 走看看