JSP from small to large display string

<%@ page import="java.util.Date" %><%--
  Created by IntelliJ IDEA.
  User: zhupengcheng
  Date: 2020/1/16
  Time: 11:06
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>$Title$</title>
  </head>
  <body bgcolor="#f0ffff">
  <%
    String str = "welcome";
    for(int i =0;i<str.length();i++){
  %>
  <font SIZE=<%= i%>>
    <%
    out.println(str.charAt(i));
    %>
  </font>

  <%
    }
  %>
  </body>

</html>

Renderings:
Here Insert Picture Description

Published 76 original articles · won praise 2 · Views 2119

Guess you like

Origin blog.csdn.net/weixin_43476969/article/details/104005021